module EPUB::ContentDocument::Navigation::Hidable

Attributes

hidden[RW]
parent[RW]

Public Instance Methods

hidden?() click to toggle source
# File lib/epub/content_document/navigation.rb, line 52
def hidden?
  if @hidden.nil?
    @parent ? @parent.hidden? : false
  else
    true
  end
end