diff options
author | louisremi <louisremi@louisremi-laptop.(none)> | 2011-02-01 16:00:19 +0100 |
---|---|---|
committer | timmywil <tim.willison@thisismedium.com> | 2011-04-04 15:46:37 -0400 |
commit | 933ea8c5fa44f93085a7b720ac50c473a394251e (patch) | |
tree | 290584a888873cee4911ffda0a200abcd69a509a /src/effects.js | |
parent | 9dc63971877d583dac5bb5c8b0c3d73d1127f144 (diff) | |
download | jquery-933ea8c5fa44f93085a7b720ac50c473a394251e.tar.gz jquery-933ea8c5fa44f93085a7b720ac50c473a394251e.zip |
'this' is the window
Diffstat (limited to 'src/effects.js')
-rw-r--r-- | src/effects.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/effects.js b/src/effects.js index a41efc282..196807ecb 100644 --- a/src/effects.js +++ b/src/effects.js @@ -471,7 +471,7 @@ jQuery.extend( jQuery.fx, { if ( !timers.length ) { jQuery.fx.stop(); } else if ( jQuery.support.requestAnimationFrame ) { - window[jQuery.support.requestAnimationFrame](this); + window[jQuery.support.requestAnimationFrame](jQuery.fx.tick); } }, |