Last active
November 6, 2018 23:52
-
-
Save renancaraujo/8f007776a35c2cc76f8175aceb2ba6b9 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Runner.prototype.scheduleNextUpdate = function () { | |
if (!this.updatePending) { | |
this.updatePending = true; | |
this.raqId = requestAnimationFrame(this.update.bind(this)); | |
} | |
}, |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment