heartcombo--simple_form/lib/simple_form/components/hints.rb

15 lines
270 B
Ruby
Raw Normal View History

module SimpleForm
module Components
# Needs to be enabled in order to do automatic lookups.
module Hints
def hint
if options[:hint] == true
translate(:hints)
else
options[:hint]
end
2011-09-03 10:55:53 +00:00
end
end
end
end