method

url_target

Importance_0
v7.1.3.4 - Show latest stable - 0 notes - Class: ActionView::Helpers::UrlHelper
url_target(name, options) private

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File actionview/lib/action_view/helpers/url_helper.rb, line 772
        def url_target(name, options)
          if name.respond_to?(:model_name) && options.is_a?(Hash) && options.empty?
            url_for(name)
          else
            url_for(options)
          end
        end
Register or log in to add new notes.