Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: opal/opal-browser
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 152c30c4cc71
Choose a base ref
...
head repository: opal/opal-browser
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 5389df75ff9d
Choose a head ref
  • 2 commits
  • 2 files changed
  • 1 contributor

Commits on Jan 25, 2014

  1. Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    faec3a2 View commit details
  2. dom/event: simplify wrapping code

    meh committed Jan 25, 2014

    Unverified

    This commit is not signed, but one or more authors requires that any commit attributed to them is signed.
    Copy the full SHA
    5389df7 View commit details
Showing with 16 additions and 40 deletions.
  1. +10 −34 opal/browser/dom/event.rb
  2. +6 −6 opal/browser/support.rb
44 changes: 10 additions & 34 deletions opal/browser/dom/event.rb
Original file line number Diff line number Diff line change
@@ -41,34 +41,6 @@ def self.name_for(name)
(aliases[name] || name).gsub(?:, '')
end

def self.classes
@classes ||= {
Animation => $$[:AnimationEvent],
AudioProcessing => $$[:AudioProcessingEvent],
BeforeUnload => $$[:BeforeUnloadEvent],
Composition => $$[:CompositionEvent],
Clipboard => $$[:ClipboardEvent],
DeviceLight => $$[:DeviceLightEvent],
DeviceMotion => $$[:DeviceMotionEvent],
DeviceOrientation => $$[:DeviceOrientationEvent],
DeviceProximity => $$[:DeviceProximityEvent],
Drag => $$[:DragEvent],
Gamepad => $$[:GamepadEvent],
HashChange => $$[:HashChangeEvent],
Progress => $$[:ProgressEvent],
PageTransition => $$[:PageTransitionEvent],
PopState => $$[:PopStateEvent],
Storage => $$[:StorageEvent],
Touch => $$[:TouchEvent],
Sensor => $$[:SensorEvent],
Mouse => $$[:MouseEvent],
Keyboard => $$[:KeyboardEvent],
Focus => $$[:FocusEvent],
Wheel => $$[:WheelEvent],
Custom => $$[:CustomEvent]
}
end

def self.class_for(name)
type = case name_for(name)
when 'animationend', 'animationiteration', 'animationstart'
@@ -169,11 +141,15 @@ def self.class_for(name)
end
end

def self.supported?
true
end

def self.create(name, *args, &block)
name = name_for(name)
klass = class_for(name)

event = new(klass.construct(name, klass.const_get(:Definition).new(&block)))
event = klass.new(klass.construct(name, klass.const_get(:Definition).new(&block)))
event.arguments = args

event
@@ -185,12 +161,12 @@ def self.construct(name, desc)
end

def self.new(value, *args)
klass, _ = classes.find {|_, constructor|
Native.is_a?(value, constructor)
}
return super unless self == Event

klass = class_for(`value.type`)

if !klass || klass == self
super(value, *args)
if klass == Event
super
else
klass.new(value, *args)
end
12 changes: 6 additions & 6 deletions opal/browser/support.rb
Original file line number Diff line number Diff line change
@@ -128,22 +128,22 @@ def self.supports?(base, *extra)
defined?(`document.createEventObject`)

when :addListener
defined?(`window.addEventListener`)
defined?(`document.documentElement.addEventListener`)

when :attach
defined?(`window.attachEvent`)
defined?(`document.documentElement.attachEvent`)

when :removeListener
defined?(`window.removeEventListener`)
defined?(`document.documentElement.removeEventListener`)

when :detach
defined?(`window.detachEvent`)
defined?(`document.documentElement.detachEvent`)

when :dispatch
defined?(`window.dispatchEvent`)
defined?(`document.documentElement.dispatchEvent`)

when :fire
defined?(`window.fireEvent`)
defined?(`document.documentElement.fireEvent`)
end

when :document