Skip to content

Commit

Permalink
reduce impact of requestAnimationFrame on incompatible browsers by mi…
Browse files Browse the repository at this point in the history
…nimizing number of lookups
  • Loading branch information
louisremi authored and timmywil committed Apr 4, 2011
1 parent 03e6f72 commit 15e34d1
Showing 1 changed file with 11 additions and 5 deletions.
16 changes: 11 additions & 5 deletions src/effects.js
Expand Up @@ -363,9 +363,17 @@ jQuery.fx.prototype = {
t.elem = this.elem;

if ( t() && jQuery.timers.push(t) && !timerId ) {
timerId = jQuery.support.requestAnimationFrame ?
!window[jQuery.support.requestAnimationFrame](fx.tick):
setInterval(fx.tick, fx.interval);
if ( jQuery.support.requestAnimationFrame ) {
timerId = true;
(function raf() {
if (timerId) {
window[jQuery.support.requestAnimationFrame](raf);
}
fx.tick();
})();
} else {
timerId = setInterval(fx.tick, fx.interval);
}
}
},

Expand Down Expand Up @@ -470,8 +478,6 @@ jQuery.extend( jQuery.fx, {

if ( !timers.length ) {
jQuery.fx.stop();
} else if ( jQuery.support.requestAnimationFrame && timerId) {
window[jQuery.support.requestAnimationFrame](jQuery.fx.tick);
}
},

Expand Down

0 comments on commit 15e34d1

Please sign in to comment.