summaryrefslogtreecommitdiffstats
path: root/src/fx.js
diff options
context:
space:
mode:
authorwout <wout@impinc.co.uk>2014-01-31 14:27:41 +0100
committerwout <wout@impinc.co.uk>2014-01-31 14:27:41 +0100
commit59d48eaab5af2a244aba3b2060336e9ce1743ed9 (patch)
tree6410e1c2a415d0249795553472dc57b1c4dbc021 /src/fx.js
parentbd7e10cb46e0cb113983c69f4f48c7a42a776809 (diff)
downloadsvg.js-59d48eaab5af2a244aba3b2060336e9ce1743ed9.tar.gz
svg.js-59d48eaab5af2a244aba3b2060336e9ce1743ed9.zip
Added msRequestAnimationFrame fir IE10 support
Diffstat (limited to 'src/fx.js')
-rwxr-xr-xsrc/fx.js1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/fx.js b/src/fx.js
index 779d038..0f73a10 100755
--- a/src/fx.js
+++ b/src/fx.js
@@ -481,5 +481,6 @@ window.requestAnimFrame = (function(){
return window.requestAnimationFrame ||
window.webkitRequestAnimationFrame ||
window.mozRequestAnimationFrame ||
+ window.msRequestAnimationFrame ||
function (c) { window.setTimeout(c, 1000 / 60) }
})() \ No newline at end of file