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
598 599 600 |
# File 'lib/dommy/navigator.rb', line 598 def mode @mode end |
#name ⇒ Object
Returns the value of attribute name
598 599 600 |
# File 'lib/dommy/navigator.rb', line 598 def name @name end |
Instance Method Details
#__js_get__(key) ⇒ Object
599 600 601 602 603 604 605 606 |
# File 'lib/dommy/navigator.rb', line 599 def __js_get__(key) case key when "name" name when "mode" mode end end |