Class: Dommy::Lock
- Inherits:
-
Struct
- Object
- Struct
- Dommy::Lock
- Defined in:
- lib/dommy/navigator.rb
Instance Attribute Summary collapse
-
#mode ⇒ Object
Returns the value of attribute mode.
-
#name ⇒ Object
Returns the value of attribute name.
Instance Method Summary collapse
Instance Attribute Details
#mode ⇒ Object
Returns the value of attribute mode
586 587 588 |
# File 'lib/dommy/navigator.rb', line 586 def mode @mode end |
#name ⇒ Object
Returns the value of attribute name
586 587 588 |
# File 'lib/dommy/navigator.rb', line 586 def name @name end |
Instance Method Details
#__js_get__(key) ⇒ Object
587 588 589 590 591 592 593 594 |
# File 'lib/dommy/navigator.rb', line 587 def __js_get__(key) case key when "name" name when "mode" mode end end |