Sha256: 5c20e9fdae8eb24dd4a5737016367c1d912341821a88757d198ca2e6dae89ebe
Contents?: true
Size: 639 Bytes
Versions: 250
Compression:
Stored size: 639 Bytes
Contents
# frozen_string_literal: true module ActionView module Helpers module Tags # :nodoc: class SearchField < TextField # :nodoc: def render options = @options.stringify_keys 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 @options = options super end end end end end
Version data entries
250 entries across 237 versions & 17 rubygems