module FormtasticBootstrap::Inputs::Base::Stringish

Public Instance Methods

wrapper_html_options() click to toggle source
Calls superclass method
# File lib/formtastic-bootstrap/inputs/base/stringish.rb, line 10
def wrapper_html_options
  new_class = [super[:class], "stringish"].compact.join(" ")
  super.merge(:class => new_class)
end