summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/profile.js.coffee
blob: e7974611cbec6461c93335d56ad6848d5fbd54e8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
$ ->
  $('.edit_user .application-theme input, .edit_user .code-preview-theme input').click ->
    # Submit the form
    $('.edit_user').submit()

    new Flash("Appearance settings saved", "notice")

  $('.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()