Flowdock
method

prefix_tag_option

Importance_0
v4.2.7 - Show latest stable - 0 notes - Class: ActionView::Helpers::TagHelper
prefix_tag_option(prefix, key, value, escape) 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/tag_helper.rb, line 166
        def prefix_tag_option(prefix, key, value, escape)
          key = "#{prefix}-#{key.to_s.dasherize}"
          unless value.is_a?(String) || value.is_a?(Symbol) || value.is_a?(BigDecimal)
            value = value.to_json
          end
          tag_option(key, value, escape)
        end
Register or log in to add new notes.