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, options)
  if (options[:nav_id].present? && current_tab?(options[:nav_id][0], options[:nav_id][1])) || current_page?(href)
    'active'
  else
    ''
  end
end