gitlab-org--gitlab-foss/app/assets/javascripts/user.js.coffee

18 lines
444 B
CoffeeScript
Raw Normal View History

class @User
2016-03-01 11:19:26 -05:00
constructor: (@opts) ->
$('.profile-groups-avatars').tooltip("placement": "top")
2016-02-29 16:39:20 -05:00
@initTabs()
$('.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: ->
new UserTabs(
parentEl: '.user-profile'
action: @opts.action
)