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

profile.js.coffee « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 213133bc96523372763a6b09e8005c55dbda3ed7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
$ ->
  $('.edit_user .application-theme input, .edit_user .code-preview-theme input').click ->
    # Hide any previous submission feedback
    $('.edit_user .update-feedback').hide()

    # Submit the form
    $('.edit_user').submit()

    # Go up the hierarchy and show the corresponding submission feedback element
    $(@).closest('fieldset').find('.update-feedback').show('highlight', {color: '#DFF0D8'}, 500)

  $('.update-username form').on 'ajax:before', ->
    $('.loading-gif').show()
    $(this).find('.update-success').hide()
    $(this).find('.update-failed').hide()

  $('.update-username form').on 'ajax:complete', ->
    $(this).find('.btn-save').enableButton()
    $(this).find('.loading-gif').hide()
  
  $('.update-notifications').on 'ajax:complete', ->
    $(this).find('.btn-save').enableButton()