Module: BootstrapWidgets
- Defined in:
- lib/dashboard_widget.rb,
lib/bootstrap_widgets.rb,
lib/bootstrap_widgets/engine.rb,
lib/bootstrap_widgets/version.rb
Defined Under Namespace
Classes: DashboardWidget, Engine
Constant Summary
collapse
- VERSION =
"1.0.3"
Instance Method Summary
collapse
Instance Method Details
22
23
24
25
26
27
28
29
|
# File 'lib/bootstrap_widgets.rb', line 22
def widget_group(widgets, cols=3)
output = (90/cols)
widgets.each do |widget|
output << widget(widget)
end
output << "</div>"
output.html_safe
end
|