aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_view/template/handlers/rjs.rb
blob: 802a79b3fce244c625f6916b4fa57d40a2a9bc70 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
module ActionView
  module TemplateHandlers
    class RJS < TemplateHandler
      include Compilable

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