Class: Trestle::Navigation::Item::Badge
- Inherits:
-
Object
- Object
- Trestle::Navigation::Item::Badge
- Defined in:
- lib/trestle/navigation/item.rb
Instance Attribute Summary collapse
-
#text ⇒ Object
readonly
Returns the value of attribute text.
Instance Method Summary collapse
- #html_class ⇒ Object
-
#initialize(options) ⇒ Badge
constructor
A new instance of Badge.
Constructor Details
#initialize(options) ⇒ Badge
Returns a new instance of Badge.
92 93 94 95 96 97 98 99 100 |
# File 'lib/trestle/navigation/item.rb', line 92 def initialize() case when Hash @html_class = [:class] @text = [:text] else @text = end end |
Instance Attribute Details
#text ⇒ Object (readonly)
Returns the value of attribute text.
90 91 92 |
# File 'lib/trestle/navigation/item.rb', line 90 def text @text end |
Instance Method Details
#html_class ⇒ Object
102 103 104 |
# File 'lib/trestle/navigation/item.rb', line 102 def html_class @html_class || "badge-primary" end |