Thu, 15 Jan 2015 21:03:48 +0100
Integrate friendly tips from Tor colleagues to make (or not) 4.5 alpha 3;
This includes removal of overloaded (but unused) methods, and addition of
a overlooked call to DataStruct::SetData(nsISupports, uint32_t, bool.)
michael@0 | 1 | var rfa = null; |
michael@0 | 2 | if (window.requestAnimationFrame) { |
michael@0 | 3 | rfa = requestAnimationFrame; |
michael@0 | 4 | } else if (window.mozRequestAnimationFrame) { |
michael@0 | 5 | rfa = mozRequestAnimationFrame; |
michael@0 | 6 | } else if (window.webkitRequestAnimationFrame) { |
michael@0 | 7 | rfa = webkitRequestAnimationFrame; |
michael@0 | 8 | } else if (window.msRequestAnimationFrame) { |
michael@0 | 9 | rfa = msRequestAnimationFrame; |
michael@0 | 10 | } else if (window.oRequestAnimationFrame) { |
michael@0 | 11 | rfa = oRequestAnimationFrame; |
michael@0 | 12 | } |
michael@0 | 13 | |
michael@0 | 14 | function animate(params, count) { |
michael@0 | 15 | rfa(function() { |
michael@0 | 16 | animateStep(params, count); |
michael@0 | 17 | }); |
michael@0 | 18 | } |
michael@0 | 19 | |
michael@0 | 20 | function animateStep(params, count) { |
michael@0 | 21 | if (!count) { |
michael@0 | 22 | document.documentElement.removeAttribute("class"); |
michael@0 | 23 | return; |
michael@0 | 24 | } |
michael@0 | 25 | var rel = document.getElementById("rel"); |
michael@0 | 26 | for (prop in params) { |
michael@0 | 27 | rel.style[prop] = (parseInt(rel.style[prop]) + params[prop]) + "px"; |
michael@0 | 28 | } |
michael@0 | 29 | rfa(function() { |
michael@0 | 30 | animateStep(params, count - 10); |
michael@0 | 31 | }); |
michael@0 | 32 | } |