aboutsummaryrefslogblamecommitdiffstats
path: root/actionpack/lib/action_view/template_handlers/rjs.rb
blob: 41a1fddb47a371a4883040c324122a341a506c01 (plain) (tree)
1
2
3
4
5
6
7
8
9


                               

                        
                           
                                     
                                                          
                                                         



         
module ActionView
  module TemplateHandlers
    class RJS < TemplateHandler
      include Compilable

      def compile(template)
        "@template_format = :html;" +
        "controller.response.content_type ||= Mime::JS;" +
          "update_page do |page|;#{template.source}\nend"
      end
    end
  end
end