Method: Formic::Button#_initialize

Defined in:
lib/formic/button.rb

#_initialize(label = nil, options = {}, &block) ⇒ Object



6
7
8
9
10
11
12
13
14
# File 'lib/formic/button.rb', line 6

def _initialize label=nil, options={}, &block
  if label.instance_of? Hash
    options = label
    label = nil
  end

  super options, &block
  @label = label
end