From c40ff5e993582e371294e4076078b707a214b209 Mon Sep 17 00:00:00 2001 From: Evan Theurer Date: Mon, 21 Sep 2015 10:52:44 +0200 Subject: [PATCH] Add rAF.js version 682e5c880c92b445650c4880a6bf9f3897ec1c5b. --- static/js/libs/rAF.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/static/js/libs/rAF.js b/static/js/libs/rAF.js index dd45670f..fd651e94 100644 --- a/static/js/libs/rAF.js +++ b/static/js/libs/rAF.js @@ -4,6 +4,8 @@ // requestAnimationFrame polyfill by Erik Möller. fixes from Paul Irish and Tino Zijdel // MIT license +// Version 682e5c880c92b445650c4880a6bf9f3897ec1c5b +// Repo https://gist.github.com/paulirish/1579671/682e5c880c92b445650c4880a6bf9f3897ec1c5b (function() { var lastTime = 0; @@ -28,4 +30,4 @@ window.cancelAnimationFrame = function(id) { clearTimeout(id); }; -}()); \ No newline at end of file +}());