Welcome to mirror list, hosted at ThFree Co, Russian Federation.

user.js.coffee « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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()