1
0
Fork 0
mirror of https://github.com/heartcombo/simple_form.git synced 2022-11-09 12:19:26 -05:00
heartcombo--simple_form/lib/simple_form/helpers/autofocus.rb
Carlos Antonio da Silva 73aa9da202 Small doc improvements
2011-12-10 15:55:27 -02:00

11 lines
160 B
Ruby

module SimpleForm
module Helpers
module Autofocus
private
def has_autofocus?
options[:autofocus] == true
end
end
end
end