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: ebffdb93df4e
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: 0b74e560649e
Choose a head ref
  • 3 commits
  • 3 files changed
  • 1 contributor

Commits on Jan 30, 2014

  1. Copy the full SHA
    56e3c33 View commit details
  2. immediate: add Kernel#defer

    meh committed Jan 30, 2014
    Copy the full SHA
    c3146b5 View commit details
  3. Copy the full SHA
    0b74e56 View commit details
Showing with 16 additions and 4 deletions.
  1. +9 −1 opal/browser/animation_frame.rb
  2. +7 −0 opal/browser/immediate.rb
  3. +0 −3 opal/browser/window.rb
10 changes: 9 additions & 1 deletion opal/browser/animation_frame.rb
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
module Browser

class AnimationFrame
# Execute the block to update an animation before the next repaint.
def initialize(window, &block)
@window = window
@native = window.to_n
@@ -78,8 +79,15 @@ def cancel

end

module Kernel
# (see Browser::AnimationFrame.new)
def animation_frame(&block)
Browser::AnimationFrame.new($window, &block)
end
end

class Proc
# Execute a block to update an animation before the next repaint.
# (see Browser::AnimationFrame.new)
def animation_frame
Browser::AnimationFrame.new($window, &self)
end
7 changes: 7 additions & 0 deletions opal/browser/immediate.rb
Original file line number Diff line number Diff line change
@@ -132,6 +132,13 @@ def aborted?

end

module Kernel
# (see Immediate.new)
def defer(*args, &block)
Browser::Immediate.new(block, args).tap(&:dispatch)
end
end

class Proc
# (see Immediate.new)
def defer(*args, &block)
3 changes: 0 additions & 3 deletions opal/browser/window.rb
Original file line number Diff line number Diff line change
@@ -1,6 +1,3 @@
require 'browser/interval'
require 'browser/delay'

require 'browser/window/view'
require 'browser/window/size'
require 'browser/window/scroll'