Sha256: 994c188861fd2bc172e6bb1f5900fab8667d4b64a05515af3a93dfb0d2b853aa

Contents?: true

Size: 578 Bytes

Versions: 46

Compression:

Stored size: 578 Bytes

Contents

module ActionView
  module Helpers
    module Tags # :nodoc:
      class SearchField < TextField # :nodoc:
        def render
          super do |options|
            if options["autosave"]
              if options["autosave"] == true
                options["autosave"] = request.host.split(".").reverse.join(".")
              end
              options["results"] ||= 10
            end

            if options["onsearch"]
              options["incremental"] = true unless options.has_key?("incremental")
            end
          end
        end
      end
    end
  end
end

Version data entries

46 entries across 45 versions & 9 rubygems

Version Path
actionview-4.2.1.rc3 lib/action_view/helpers/tags/search_field.rb
actionview-4.2.1.rc2 lib/action_view/helpers/tags/search_field.rb
actionview-4.2.1.rc1 lib/action_view/helpers/tags/search_field.rb
activejob-lock-0.0.1 rails/actionview/lib/action_view/helpers/tags/search_field.rb
actionpack-4.0.13 lib/action_view/helpers/tags/search_field.rb
actionpack-4.0.13.rc1 lib/action_view/helpers/tags/search_field.rb