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/components/html5.rb

23 lines
354 B
Ruby
Raw Normal View History

2011-12-04 10:15:27 -05:00
module SimpleForm
module Components
module HTML5
def initialize(*)
@html5 = false
end
def html5
@html5 = true
2011-12-05 04:44:02 -05:00
input_html_options[:required] = true if has_required?
nil
2011-12-04 10:15:27 -05:00
end
def html5?
@html5
end
2011-12-05 04:44:02 -05:00
def has_required?
required_field?
end
2011-12-04 10:15:27 -05:00
end
end
end