engine/app/assets/javascripts/locomotive/views/theme_assets/edit_view.js.coffee

17 lines
515 B
CoffeeScript

Locomotive.Views.ThemeAssets ||= {}
class Locomotive.Views.ThemeAssets.EditView extends Locomotive.Views.ThemeAssets.FormView
save: (event) ->
@save_in_ajax event, on_success: (response, xhr) =>
window.response = response
window.xhr = xhr
help = @$('.inner > p.help')
help.find('b').html(response.dimensions)
help.find('a').html(response.url).attr('href', response.url)
window.editor = @editor
if response.plain_text?
@editor.setValue response.plain_text