29 lines
977 B
CoffeeScript
29 lines
977 B
CoffeeScript
class @Profile
|
|
constructor: ->
|
|
$('.edit_user .application-theme input, .edit_user .code-preview-theme input').click ->
|
|
# Submit the form
|
|
$('.edit_user').submit()
|
|
|
|
new Flash('Preferences 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').enable()
|
|
$(this).find('.loading-gif').hide()
|
|
|
|
$('.update-notifications').on 'ajax:complete', ->
|
|
$(this).find('.btn-save').enable()
|
|
|
|
|
|
$('.js-choose-user-avatar-button').bind "click", ->
|
|
form = $(this).closest("form")
|
|
form.find(".js-user-avatar-input").click()
|
|
|
|
$('.js-user-avatar-input').bind "change", ->
|
|
form = $(this).closest("form")
|
|
filename = $(this).val().replace(/^.*[\\\/]/, '')
|
|
form.find(".js-avatar-filename").text(filename)
|