Module: Trestle::LayoutHelper
- Defined in:
- app/helpers/trestle/layout_helper.rb
Constant Summary collapse
- SIDEBAR_CLASSES =
{ "expanded" => "sidebar-expanded", "collapsed" => "sidebar-collapsed" }
Instance Method Summary collapse
Instance Method Details
#body_attributes ⇒ Object
8 9 10 11 12 |
# File 'app/helpers/trestle/layout_helper.rb', line 8 def body_attributes { class: body_classes }.reject { |k, v| v.blank? } end |
#body_classes ⇒ Object
14 15 16 17 18 |
# File 'app/helpers/trestle/layout_helper.rb', line 14 def body_classes [ SIDEBAR_CLASSES[["trestle:sidebar"]] ].compact end |