class Voom::Presenters::DSL::Components::Footer

Attributes

menus[RW]

Public Class Methods

new(type: nil, **attribs_, &block) click to toggle source
# File lib/voom/presenters/dsl/components/footer.rb, line 8
def initialize(type: nil, **attribs_, &block)
  @footer_type = type ||  :small
  super(type: :footer, **attribs_, &block)
  @menus = []
  expand!
end

Public Instance Methods

menu(title=nil, **attribs, &block) click to toggle source