Method: Celerity::TextField#type
- Defined in:
- lib/celerity/elements/text_field.rb
#type ⇒ Object
84 85 86 87 88 89 |
# File 'lib/celerity/elements/text_field.rb', line 84 def type assert_exists type = @object.getAttribute 'type' NON_TEXT_TYPES.include?(type) ? type : 'text' end |