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

13 lines
212 B
Ruby
Raw Normal View History

module SimpleForm
module Helpers
module Disabled
def has_disabled?
options[:disabled] == true
end
def disabled_class
2011-12-05 09:44:02 +00:00
:disabled if has_disabled?
end
end
end
end