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) ⇒ Tab
constructor
A new instance of Tab.
- #to_a ⇒ Object
Constructor Details
#initialize(title, content: '', callback: nil) ⇒ Tab
Returns a new instance of Tab.
18 19 20 |
# File 'lib/htmlcom.rb', line 18 def initialize(title, content: '', callback: nil) @title, @content, @callback = title, content, callback end |
Instance Attribute Details
#content ⇒ Object
Returns the value of attribute content.
16 17 18 |
# File 'lib/htmlcom.rb', line 16 def content @content end |
#title ⇒ Object
Returns the value of attribute title.
16 17 18 |
# File 'lib/htmlcom.rb', line 16 def title @title end |
Instance Method Details
#delete ⇒ Object
27 28 29 30 |
# File 'lib/htmlcom.rb', line 27 def delete() @title = nil @callback.ping end |
#to_a ⇒ Object
37 38 39 |
# File 'lib/htmlcom.rb', line 37 def to_a() [@title, @content] end |