Class: W3C::DOM3::UIEvent
- Inherits:
-
W3C::DOM4::Event
- Object
- W3C::DOM4::Event
- W3C::DOM3::UIEvent
- Defined in:
- lib/w3c/dom3/ui_event.rb
Direct Known Subclasses
Constant Summary
Constants inherited from W3C::DOM4::Event
W3C::DOM4::Event::AT_TARGET, W3C::DOM4::Event::BUBBLING_PHASE, W3C::DOM4::Event::CAPTURING_PHASE, W3C::DOM4::Event::NONE
Instance Method Summary collapse
-
#initialize(type, eventInitDict = {}) ⇒ Object
constructor
Self.
Methods inherited from W3C::DOM4::Event
#preventDefault, #stopImmediatePropagation, #stopPropagation
Constructor Details
#initialize(type, eventInitDict = {}) ⇒ Object
Returns self.
16 17 18 19 20 |
# File 'lib/w3c/dom3/ui_event.rb', line 16 def initialize(type, eventInitDict={}) @view = eventInitDict[:view] || nil @detail = eventInitDict[:detail] || 0 super(type, eventInitDict) end |