Class: HtmlCom::Tabs::Tab

Inherits:
Object
  • Object
show all
Defined in:
lib/htmlcom.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

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

#contentObject

Returns the value of attribute content.



16
17
18
# File 'lib/htmlcom.rb', line 16

def content
  @content
end

#titleObject

Returns the value of attribute title.



16
17
18
# File 'lib/htmlcom.rb', line 16

def title
  @title
end

Instance Method Details

#deleteObject



27
28
29
30
# File 'lib/htmlcom.rb', line 27

def delete()
  @title = nil
  @callback.ping
end

#to_aObject



37
38
39
# File 'lib/htmlcom.rb', line 37

def to_a()
  [@title, @content]
end