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

13 lines
213 B
Ruby
Raw Normal View History

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