Module: NavigationHelper
- Defined in:
- app/helpers/navigation_helper.rb
Instance Method Summary collapse
Instance Method Details
#active_class(href, options) ⇒ Object
2 3 4 5 6 7 8 |
# File 'app/helpers/navigation_helper.rb', line 2 def active_class(href, ) if ([:nav_id].present? && current_tab?([:nav_id][0], [:nav_id][1])) || current_page?(href) 'active' else '' end end |