heartcombo--simple_form/lib/simple_form/components/html5.rb

26 lines
535 B
Ruby
Raw Normal View History

2011-12-04 15:15:27 +00:00
module SimpleForm
module Components
module HTML5
def initialize(*)
@html5 = false
end
def html5
@html5 = true
2011-12-05 09:44:02 +00:00
input_html_options[:required] = true if has_required?
nil
2011-12-04 15:15:27 +00:00
end
def html5?
@html5
end
2011-12-05 09:44:02 +00:00
def has_required?
# We need to check browser_validations because
# some browsers are still checking required even
# if novalidate was given.
required_field? && SimpleForm.browser_validations
2011-12-05 09:44:02 +00:00
end
2011-12-04 15:15:27 +00:00
end
end
end