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

19 lines
399 B
Ruby

module SimpleForm
module Components
# Needs to be enabled in order to do automatic lookups.
module Hints
def hint
@hint ||= begin
hint = options[:hint]
hint_content = hint.is_a?(String) ? hint : translate(:hints)
hint_content.html_safe if hint_content
end
end
def has_hint?
hint.present?
end
end
end
end