Method: Interview::HorizontalFormContainer#build

Defined in:
lib/interview/controls/horizontal_form_container.rb

#build(b) ⇒ Object



4
5
6
7
8
9
10
# File 'lib/interview/controls/horizontal_form_container.rb', line 4

def build(b)
  b.section html_class: 'row' do
    b.section html_class: 'col-xs-9 col-xs-offset-3' do
      yield if block_given?
    end
  end
end