summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/profile.js.coffee
blob: 42207a390b38e7820eca9f8c8c6404f869550885 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
$ ->
  $('.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('.save-btn').removeAttr('disabled')
    $(this).find('.save-btn').removeClass('disabled')
    $(this).find('.loading-gif').hide()