module ActionController::Renderers
Public Instance Methods
render_to_body_with_jpmobile(options)
click to toggle source
# File lib/jpmobile/hook_action_controller.rb, line 5 def render_to_body_with_jpmobile(options) if Jpmobile.config.fallback_view_selector and lookup_context.mobile.present? and !lookup_context.mobile.empty? begin expected_view_file = lookup_context.find_template(options[:template], options[:prefixes]) _candidates = lookup_context.mobile.map { |variant| target_template = options[:template] + '_' + variant expected_view_file.virtual_path.match(target_template) }.compact if _candidates.empty? lookup_context.mobile = [] end rescue ActionView::MissingTemplate end end render_to_body_without_jpmobile(options) end