Class: Browser::Event::DeviceMotion

Inherits:
Browser::Event show all
Defined in:
opal/browser/event/device_motion.rb

Defined Under Namespace

Classes: Acceleration, Definition

Instance Attribute Summary

Attributes inherited from Browser::Event

#callback, #on

Class Method Summary collapse

Methods inherited from Browser::Event

aliases, #arguments, #arguments=, class_for, create, #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



29
30
31
# File 'opal/browser/event/device_motion.rb', line 29

def self.construct(name, desc)
  `new DeviceMotionEvent(#{name}, #{desc})`
end

.supported?Boolean

Returns:

  • (Boolean)


4
5
6
# File 'opal/browser/event/device_motion.rb', line 4

def self.supported?
  Browser.supports? 'Event.DeviceMotion'
end