blob: 9d710591346935954a0574022a9f2b8e9ad3cd06 (
plain) (
tree)
|
|
module ActionView
module Template::Handlers
class RJS
# Default format used by RJS.
class_attribute :default_format
self.default_format = Mime::JS
def call(template)
"update_page do |page|;#{template.source}\nend"
end
end
end
end
|