aboutsummaryrefslogtreecommitdiffstats
path: root/src/effects.js
diff options
context:
space:
mode:
authorlouisremi <louisremi@louisremi-laptop.(none)>2011-02-01 16:00:19 +0100
committertimmywil <tim.willison@thisismedium.com>2011-04-04 15:46:37 -0400
commit933ea8c5fa44f93085a7b720ac50c473a394251e (patch)
tree290584a888873cee4911ffda0a200abcd69a509a /src/effects.js
parent9dc63971877d583dac5bb5c8b0c3d73d1127f144 (diff)
downloadjquery-933ea8c5fa44f93085a7b720ac50c473a394251e.tar.gz
jquery-933ea8c5fa44f93085a7b720ac50c473a394251e.zip
'this' is the window
Diffstat (limited to 'src/effects.js')
-rw-r--r--src/effects.js2
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);
}
},