Sha256: de695a287c4cb475b9fdfbc91b3c6b0e4723015b4753cf437a8393deac21e613
Contents?: true
Size: 608 Bytes
Versions: 55
Compression:
Stored size: 608 Bytes
Contents
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
55 entries across 55 versions & 4 rubygems