method

prefix_tag_option

rails latest stable - Class: ActionView::Helpers

Method not available on this version

This method is only available on newer versions. The first available version (v7.2.3) is shown here.

prefix_tag_option(prefix, key, value, escape)
private

No documentation available.

# File actionview/lib/action_view/helpers/tag_helper.rb, line 325
          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