26 lines
982 B
CoffeeScript
26 lines
982 B
CoffeeScript
class @Profile
|
|
constructor: ->
|
|
# Automatically submit the Preferences form when any of its radio buttons change
|
|
$('.js-preferences-form').on 'change.preference', 'input[type=radio]', ->
|
|
$(this).parents('form').submit()
|
|
|
|
$('.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)
|