mirror of
https://github.com/heartcombo/simple_form.git
synced 2022-11-09 12:19:26 -05:00
17 lines
255 B
Ruby
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
|