Class: IRuby::Input::Label
- Defined in:
- lib/iruby/input/label.rb
Instance Method Summary collapse
Methods inherited from Widget
builder, #content, #widget_css, #widget_display, #widget_html, #widget_join, #widget_js
Instance Method Details
#widget_label ⇒ Object
6 7 8 9 10 11 12 13 14 15 16 17 18 |
# File 'lib/iruby/input/label.rb', line 6 def div class: 'iruby-label input-group' do span class: 'input-group-addon' do text @label || to_label(@key) end yield if @icon span @icon, class: "input-group-addon" end end end |