module FormtasticBootstrap::Inputs::Base::Numeric

Public Instance Methods

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