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


                               

                        
                           
                                                          
                                                         



         
module ActionView
  module TemplateHandlers
    class RJS < TemplateHandler
      include Compilable

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