# File lib/formtastic-bootstrap/inputs/base/html.rb, line 14
        def input_html_options
          if errors?
            {
              :class => "error"
            }.merge(super)
          else
            super
          end
        end