Class: Dima::Html::Element
- Inherits:
-
Object
- Object
- Dima::Html::Element
- Defined in:
- lib/dima/html/element.rb
Direct Known Subclasses
Constant Summary collapse
- @@id_count =
0
Instance Method Summary collapse
Instance Method Details
#id ⇒ Object
6 7 8 9 10 11 12 |
# File 'lib/dima/html/element.rb', line 6 def id unless @id @id = "dim-#{(@@id_count)}" @@id_count += 1 end @id end |
#id=(id) ⇒ Object
14 15 16 |
# File 'lib/dima/html/element.rb', line 14 def id=(id) @id = id end |