Class: HtmlCom::Tabs::Tab
- Inherits:
-
Object
- Object
- HtmlCom::Tabs::Tab
- Defined in:
- lib/htmlcom.rb
Instance Attribute Summary collapse
-
#content ⇒ Object
Returns the value of attribute content.
-
#title ⇒ Object
Returns the value of attribute title.
Instance Method Summary collapse
- #delete ⇒ Object
-
#initialize(title, content: '', callback: nil, debug: false) ⇒ Tab
constructor
A new instance of Tab.
- #to_a ⇒ Object
Constructor Details
#initialize(title, content: '', callback: nil, debug: false) ⇒ Tab
Returns a new instance of Tab.
142 143 144 |
# File 'lib/htmlcom.rb', line 142 def initialize(title, content: '', callback: nil, debug: false) @title, @content, @callback, @debug = title, content, callback, debug end |
Instance Attribute Details
#content ⇒ Object
Returns the value of attribute content.
140 141 142 |
# File 'lib/htmlcom.rb', line 140 def content @content end |
#title ⇒ Object
Returns the value of attribute title.
140 141 142 |
# File 'lib/htmlcom.rb', line 140 def title @title end |
Instance Method Details
#delete ⇒ Object
151 152 153 154 |
# File 'lib/htmlcom.rb', line 151 def delete() @title = nil @callback.ping end |
#to_a ⇒ Object
161 162 163 |
# File 'lib/htmlcom.rb', line 161 def to_a() [@title, @content] end |