Sha256: 1969d8d356a5ce4e9c0ee7f7cb68848f91639b1d5eeb422f9bf133f6e3e4e7b8
Contents?: true
Size: 448 Bytes
Versions: 7
Compression:
Stored size: 448 Bytes
Contents
module Twitter::Bootstrap::Markup::Rails::Components class FormBuilder < ActionView::Helpers::FormBuilder def text_field(method, options={}) input_html = super(method, options) Form::InputField.new(object_name, method, input_html, options).to_s end def password_field(method, options={}) input_html = super(method, options) Form::InputField.new(object_name, method, input_html, options).to_s end end end
Version data entries
7 entries across 7 versions & 1 rubygems