1
0
Fork 0
mirror of https://github.com/heartcombo/simple_form.git synced 2022-11-09 12:19:26 -05:00
heartcombo--simple_form/lib/simple_form/components/hints.rb
2011-09-08 16:04:37 +02:00

17 lines
255 B
Ruby

module SimpleForm
module Components
module Hints
def hint
(options.delete(:hint) || translate(:hints)).presence
end
private
alias :enabled_hint :hint
def disabled_hint
nil
end
end
end
end