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: 1e9c8cfc7684
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: 574b32cd68a7
Choose a head ref
  • 2 commits
  • 2 files changed
  • 1 contributor

Commits on Jan 25, 2014

  1. dom/event/device_motion: fix typo

    meh committed Jan 25, 2014

    Verified

    This commit was signed with the committer’s verified signature. The key has expired.
    Ma27 Maximilian Bosch
    Copy the full SHA
    ddf94e3 View commit details
  2. Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    574b32c View commit details
Showing with 1 addition and 6 deletions.
  1. +0 −5 opal/browser/dom/event.rb
  2. +1 −1 opal/browser/dom/event/device_motion.rb
5 changes: 0 additions & 5 deletions opal/browser/dom/event.rb
Original file line number Diff line number Diff line change
@@ -173,11 +173,6 @@ def self.construct(name, desc)
end
end

# @private
def self.construct(name, desc)
raise NotImplementedError
end

def self.new(value, *args)
return super unless self == Event

2 changes: 1 addition & 1 deletion opal/browser/dom/event/device_motion.rb
Original file line number Diff line number Diff line change
@@ -29,7 +29,7 @@ def interval=(value)
def self.construct(name, desc)
`new DeviceMotionEvent(#{name}, #{desc})`
end
elsif Browser.supports? 'Event.constructor'
elsif Browser.supports? 'Event.create'
def self.construct(name, desc)
%x{
var event = document.createEvent("DeviceMotionEvent");