Sha256: 48ff2b08a5c702166effc0a8d40a1d9c3776ad8550b6cd4cf3a3d1c1e0d5b8d6
Contents?: true
Size: 1.57 KB
Versions: 8
Compression:
Stored size: 1.57 KB
Contents
# -*- encoding : utf-8 -*- class Card; module Set; class All; module Bootstrap; # Set: All cards (Bootstrap, Form) # module Form; extend Card::Set def self.source_location; "/Users/ethan/dev/decko/gem/card-mod-bootstrap/set/all/bootstrap/form.rb"; end module HtmlFormat; module_parent.send :register_set_format, Card::Format::HtmlFormat, self; extend Card::Set::AbstractFormat def button_tag content_or_options=nil, options={}, &block bootstrapify_button(block_given? ? content_or_options : options) super(content_or_options, options, &block) end def bootstrapify_button options situation = options.delete(:situation) || "primary" options[:class] = [options[:class], "btn", "btn-#{situation}"].compact * " " end def type_field args={} args[:class] ||= "" args[:class] += " form-control" super(args) end def bootstrap_options options options[:class] ||= "" options[:class] += " form-control" options end FIELD_HELPERS = %w[hidden_field color_field date_field datetime_field datetime_local_field email_field month_field number_field password_field phone_field range_field search_field telephone_field text_area text_field time_field url_field week_field file_field].freeze FIELD_HELPERS.each do |method_name| define_method(method_name) do |name, options={}| form.send(method_name, name, bootstrap_options(options)) end end end end;end;end;end;end; # ~~ generated from /Users/ethan/dev/decko/gem/card-mod-bootstrap/set/all/bootstrap/form.rb ~~
Version data entries
8 entries across 8 versions & 1 rubygems