heartcombo--simple_form/lib/simple_form/helpers/disabled.rb

16 lines
228 B
Ruby

module SimpleForm
module Helpers
module Disabled
private
def has_disabled?
options[:disabled] == true
end
def disabled_class
:disabled if has_disabled?
end
end
end
end