From 424a5a7d46176eaa9617ad4fdc99d8c2be53b186 Mon Sep 17 00:00:00 2001 From: Kassio Borges Date: Fri, 23 Aug 2013 22:46:49 -0300 Subject: fix issue #11605 --- actionpack/lib/action_view/lookup_context.rb | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) (limited to 'actionpack/lib/action_view/lookup_context.rb') diff --git a/actionpack/lib/action_view/lookup_context.rb b/actionpack/lib/action_view/lookup_context.rb index 1a656ed37f..9f617a9a53 100644 --- a/actionpack/lib/action_view/lookup_context.rb +++ b/actionpack/lib/action_view/lookup_context.rb @@ -103,7 +103,7 @@ module ActionView # Helpers related to template lookup using the lookup context information. module ViewPaths - attr_reader :view_paths, :html_fallback_for_js + attr_reader :view_paths # Whenever setting view paths, makes a copy so we can manipulate then in # instance objects as we wish. @@ -200,10 +200,7 @@ module ActionView def formats=(values) if values values.concat(default_formats) if values.delete "*/*" - if values == [:js] - values << :html - @html_fallback_for_js = true - end + values << :html if values == [:js] end super(values) end -- cgit v1.2.3