2014-10-21 04:40:36 -04:00
|
|
|
class @User
|
2016-03-01 11:19:26 -05:00
|
|
|
constructor: (@opts) ->
|
2014-10-21 04:40:36 -04:00
|
|
|
$('.profile-groups-avatars').tooltip("placement": "top")
|
2015-12-02 19:02:15 -05:00
|
|
|
|
2016-02-29 16:39:20 -05:00
|
|
|
@initTabs()
|
|
|
|
|
2015-12-02 19:02:15 -05:00
|
|
|
$('.hide-project-limit-message').on 'click', (e) ->
|
|
|
|
path = '/'
|
|
|
|
$.cookie('hide_project_limit_message', 'false', { path: path })
|
|
|
|
$(@).parents('.project-limit-message').remove()
|
|
|
|
e.preventDefault()
|
2016-02-29 16:39:20 -05:00
|
|
|
|
|
|
|
initTabs: ->
|
2016-03-02 14:08:03 -05:00
|
|
|
new UserTabs(
|
|
|
|
parentEl: '.user-profile'
|
|
|
|
action: @opts.action
|
|
|
|
)
|