blob: eb7f7bb26b153fbf9a76dc753408d642759dd5f8 (
plain)
1
2
3
4
5
6
7
8
9
10
|
class @User
constructor: ->
$('.profile-groups-avatars').tooltip("placement": "top")
ProjectsList.init()
$('.hide-project-limit-message').on 'click', (e) ->
path = '/'
$.cookie('hide_project_limit_message', 'false', { path: path })
$(@).parents('.project-limit-message').remove()
e.preventDefault()
|