mirror of
https://github.com/heartcombo/simple_form.git
synced 2022-11-09 12:19:26 -05:00
13 lines
No EOL
212 B
Ruby
13 lines
No EOL
212 B
Ruby
module SimpleForm
|
|
module Helpers
|
|
module Disabled
|
|
def has_disabled?
|
|
options[:disabled] == true
|
|
end
|
|
|
|
def disabled_class
|
|
:disabled if has_disabled?
|
|
end
|
|
end
|
|
end
|
|
end |