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