41a1fddb47a371a4883040c324122a341a506c01
[feedcatcher.git] / vendor / rails / actionpack / lib / action_view / template_handlers / rjs.rb
1 module ActionView
2 module TemplateHandlers
3 class RJS < TemplateHandler
4 include Compilable
5
6 def compile(template)
7 "@template_format = :html;" +
8 "controller.response.content_type ||= Mime::JS;" +
9 "update_page do |page|;#{template.source}\nend"
10 end
11 end
12 end
13 end