class Formulary::HtmlForm::Fields::Textarea

Public Class Methods

compatible_with?(element) click to toggle source
# File lib/formulary/html_form/fields/textarea.rb, line 3
def self.compatible_with?(element)
  element.name == "textarea"
end
supports_required?() click to toggle source
# File lib/formulary/html_form/fields/textarea.rb, line 7
def self.supports_required?
  true
end