Module: SimpleForm::Components::HTML5
- Included in:
- Inputs::Base
- Defined in:
- lib/simple_form/components/html5.rb
Instance Method Summary collapse
- #has_required? ⇒ Boolean
- #html5(wrapper_options = nil) ⇒ Object
- #html5? ⇒ Boolean
- #initialize ⇒ Object
Instance Method Details
#has_required? ⇒ Boolean
21 22 23 24 25 26 |
# File 'lib/simple_form/components/html5.rb', line 21 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 end |
#html5(wrapper_options = nil) ⇒ Object
8 9 10 11 12 13 14 15 |
# File 'lib/simple_form/components/html5.rb', line 8 def html5( = nil) @html5 = true [:required] = has_required? [:'aria-required'] = has_required? || nil nil end |
#html5? ⇒ Boolean
17 18 19 |
# File 'lib/simple_form/components/html5.rb', line 17 def html5? @html5 end |
#initialize ⇒ Object
4 5 6 |
# File 'lib/simple_form/components/html5.rb', line 4 def initialize(*) @html5 = false end |