instance method escape_unsafe_options

Ruby on Rails 4.2.9

Since v4.0.13 Private

Available in: v4.0.13 v4.1.16 v4.2.9 v5.2.8.1 v6.0.6 v6.1.7.10 v7.0.10 v7.1.6 v7.2.3 v8.0.4 v8.1.2

Signature

escape_unsafe_options(options)

No documentation comment.

Parameters

options req
Source
# File actionview/lib/action_view/helpers/number_helper.rb, line 392
      def escape_unsafe_options(options)
        options[:format]          = ERB::Util.html_escape(options[:format]) if options[:format]
        options[:negative_format] = ERB::Util.html_escape(options[:negative_format]) if options[:negative_format]
        options[:separator]       = ERB::Util.html_escape(options[:separator]) if options[:separator]
        options[:delimiter]       = ERB::Util.html_escape(options[:delimiter]) if options[:delimiter]
        options[:unit]            = ERB::Util.html_escape(options[:unit]) if options[:unit] && !options[:unit].html_safe?
        options[:units]           = escape_units(options[:units]) if options[:units] && Hash === options[:units]
        options
      end

Defined in actionview/lib/action_view/helpers/number_helper.rb line 392 · View on GitHub · Improve this page · Find usages on GitHub

Defined in ActionView::Helpers::NumberHelper

Type at least 2 characters to search.

↑↓ navigate · open · esc close