Radiant CMS hook to include ajax-save.js in admin edit views
# can be put in the `activate` method of an extension
Admin::PageController.class_eval do
before_filter :enable_ajax_save, :only => [:edit]
protected
def enable_ajax_save
include_javascript 'ajax-save.js'
end
end
public/javascripts/ajax-save.js -- unobtrusive Ajax post on "save and continue" (javascript)