aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib
diff options
context:
space:
mode:
authorJoshua Peek <josh@joshpeek.com>2008-12-04 17:20:51 -0600
committerJoshua Peek <josh@joshpeek.com>2008-12-04 17:20:51 -0600
commit148aff2097890a81e874a7c60bae5fa3b2a4d1fd (patch)
tree63df01cf33c7cc78958e6b192998b0259dda5892 /actionpack/lib
parentab211bf592f52fbde7853961030046ea1d387851 (diff)
downloadrails-148aff2097890a81e874a7c60bae5fa3b2a4d1fd.tar.gz
rails-148aff2097890a81e874a7c60bae5fa3b2a4d1fd.tar.bz2
rails-148aff2097890a81e874a7c60bae5fa3b2a4d1fd.zip
Set template_format to html inside rjs templates so renders within it default to html.
Diffstat (limited to 'actionpack/lib')
-rw-r--r--actionpack/lib/action_view/base.rb3
-rw-r--r--actionpack/lib/action_view/template_handlers/rjs.rb1
2 files changed, 1 insertions, 3 deletions
diff --git a/actionpack/lib/action_view/base.rb b/actionpack/lib/action_view/base.rb
index a731fa3e1d..b8a5d39b20 100644
--- a/actionpack/lib/action_view/base.rb
+++ b/actionpack/lib/action_view/base.rb
@@ -327,9 +327,6 @@ module ActionView #:nodoc:
elsif (first_render = @_render_stack.first) && first_render.respond_to?(:format_and_extension) &&
(template = self.view_paths["#{template_file_name}.#{first_render.format_and_extension}"])
template
- elsif template_format == :js && template = self.view_paths["#{template_file_name}.html"]
- @template_format = :html
- template
else
template = Template.new(template_path, view_paths)
diff --git a/actionpack/lib/action_view/template_handlers/rjs.rb b/actionpack/lib/action_view/template_handlers/rjs.rb
index a700655c9a..41a1fddb47 100644
--- a/actionpack/lib/action_view/template_handlers/rjs.rb
+++ b/actionpack/lib/action_view/template_handlers/rjs.rb
@@ -4,6 +4,7 @@ module ActionView
include Compilable
def compile(template)
+ "@template_format = :html;" +
"controller.response.content_type ||= Mime::JS;" +
"update_page do |page|;#{template.source}\nend"
end