Class: Browser::Event::Wheel
- Inherits:
-
UI
- Object
- Browser::Event
- UI
- Browser::Event::Wheel
- Defined in:
- opal/browser/event/wheel.rb
Defined Under Namespace
Classes: Definition
Instance Attribute Summary
Attributes inherited from Browser::Event
Class Method Summary collapse
Instance Method Summary collapse
Methods inherited from Browser::Event
aliases, #arguments, #arguments=, class_for, create, handlers, handles, #initialize, #name, name_for, new, #off, #prevent, #prevented?, #stop, #stop!, #stopped?, #target
Constructor Details
This class inherits a constructor from Browser::Event
Class Method Details
.construct(name, desc) ⇒ Object
34 35 36 |
# File 'opal/browser/event/wheel.rb', line 34 def self.construct(name, desc) `new WheelEvent(#{name}, #{desc})` end |
.supported? ⇒ Boolean
6 7 8 |
# File 'opal/browser/event/wheel.rb', line 6 def self.supported? not $$[:WheelEvent].nil? end |
Instance Method Details
#mode ⇒ Object
42 43 44 45 46 47 48 |
# File 'opal/browser/event/wheel.rb', line 42 def mode case `#@native.deltaMode` when `WheelEvent.DOM_DELTA_PIXEL` then :pixel when `WheelEvent.DOM_DELTA_LINE` then :line when `WheelEvent.DOM_DELTA_PAGE` then :page end end |