summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/user.js
blob: 3cab0db65a2e2a3d2f910d9a20df26838486905a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
this.User = (function() {
  function User(opts) {
    this.opts = opts;
    $('.profile-groups-avatars').tooltip({
      "placement": "top"
    });
    this.initTabs();
    $('.hide-project-limit-message').on('click', function(e) {
      var path;
      path = '/';
      $.cookie('hide_project_limit_message', 'false', {
        path: path
      });
      $(this).parents('.project-limit-message').remove();
      return e.preventDefault();
    });
  }

  User.prototype.initTabs = function() {
    return new UserTabs({
      parentEl: '.user-profile',
      action: this.opts.action
    });
  };

  return User;

})();