class Interview::Panel
Public Instance Methods
build(b) { || ... }
click to toggle source
# File lib/interview/controls/panel.rb, line 4 def build(b) b.section html_class: 'panel panel-default' do b.section html_class: 'panel-body' do yield if block_given? end end end