Module: LayMeOut::Controllers::Navigation

Extended by:
ActiveSupport::Concern
Defined in:
lib/lay_me_out/controllers/navigation.rb

Instance Method Summary collapse

Instance Method Details

#active_page?(path) ⇒ Boolean

Returns:

  • (Boolean)


6
7
8
9
# File 'lib/lay_me_out/controllers/navigation.rb', line 6

def active_page?(path)
  path = normalized_path(path)
  current_page?(path) || active_pages.include?(path)
end