Sha256: ea7db5c700c6dea57dced1e60fb4a0ff2fbf222dbe9d8c6202f18f2485b954b6
Contents?: true
Size: 642 Bytes
Versions: 22
Compression:
Stored size: 642 Bytes
Contents
module Formtastic module Inputs module Base module Hints def hint_html if hint? template.content_tag( :p, Formtastic::Util.html_safe(hint_text), :class => (options[:hint_class] || builder.default_hint_class) ) end end def hint? !hint_text.blank? && !hint_text.kind_of?(Hash) end def hint_text localized_string(method, options[:hint], :hint) end def hint_text_from_options options[:hint] end end end end end
Version data entries
22 entries across 22 versions & 2 rubygems