module Infoboxer::Navigation::Sections::Nodes

Part of {Sections} navigation, allowing chains of section search.

See {Sections parent module} documentation.

Public Instance Methods

lookup_children(*arg) click to toggle source
Calls superclass method
# File lib/infoboxer/navigation/sections.rb, line 175
def lookup_children(*arg)
  if arg.include?(:Section)
    sections.find(*(arg - [:Section]))
  else
    super
  end
end