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

18 lines
444 B
CoffeeScript
Raw Normal View History

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