mirror of
https://github.com/heartcombo/simple_form.git
synced 2022-11-09 12:19:26 -05:00
15 lines
228 B
Ruby
15 lines
228 B
Ruby
module SimpleForm
|
|
module Helpers
|
|
module Readonly
|
|
private
|
|
|
|
def readonly_class
|
|
:readonly if has_readonly?
|
|
end
|
|
|
|
def has_readonly?
|
|
options[:readonly] == true
|
|
end
|
|
end
|
|
end
|
|
end
|