2015-04-26 12:48:37 +05:30
|
|
|
class @User
|
2016-06-02 11:05:42 +05:30
|
|
|
constructor: (@opts) ->
|
2015-04-26 12:48:37 +05:30
|
|
|
$('.profile-groups-avatars').tooltip("placement": "top")
|
2016-06-02 11:05:42 +05:30
|
|
|
|
|
|
|
@initTabs()
|
2015-12-23 02:04:40 +05:30
|
|
|
|
|
|
|
$('.hide-project-limit-message').on 'click', (e) ->
|
|
|
|
path = '/'
|
|
|
|
$.cookie('hide_project_limit_message', 'false', { path: path })
|
|
|
|
$(@).parents('.project-limit-message').remove()
|
|
|
|
e.preventDefault()
|
2016-06-02 11:05:42 +05:30
|
|
|
|
|
|
|
initTabs: ->
|
|
|
|
new UserTabs(
|
|
|
|
parentEl: '.user-profile'
|
|
|
|
action: @opts.action
|
|
|
|
)
|