diff options
author | Wilson Page <wilsonpage@me.com> | 2014-08-07 14:00:04 +0100 |
---|---|---|
committer | Wilson Page <wilsonpage@me.com> | 2014-08-07 14:00:04 +0100 |
commit | 91fc812e7ca7725328652ad3b6e503eddb7e466b (patch) | |
tree | dbe4d81a89c6605095badde07516ebba8cd9b293 | |
parent | c7c66fcbb34689c71cba91e1cbe11bfd422a0103 (diff) | |
parent | 70e31ab8d223fbf341ce4016f9b2ce7f8885df11 (diff) | |
download | fastdom-91fc812e7ca7725328652ad3b6e503eddb7e466b.zip fastdom-91fc812e7ca7725328652ad3b6e503eddb7e466b.tar.gz fastdom-91fc812e7ca7725328652ad3b6e503eddb7e466b.tar.bz2 |
Merge pull request #46 from rburgt/patch-1
Removed superfluous cancelAnimationFrame definition
-rw-r--r-- | index.js | 11 |
1 files changed, 0 insertions, 11 deletions
@@ -19,17 +19,6 @@ || window.msRequestAnimationFrame || function(cb) { return window.setTimeout(cb, 1000 / 60); }; - // Normalize cAF - var caf = window.cancelAnimationFrame - || window.cancelRequestAnimationFrame - || window.mozCancelAnimationFrame - || window.mozCancelRequestAnimationFrame - || window.webkitCancelAnimationFrame - || window.webkitCancelRequestAnimationFrame - || window.msCancelAnimationFrame - || window.msCancelRequestAnimationFrame - || function(id) { window.clearTimeout(id); }; - /** * Creates a fresh * FastDom instance. |