X-Git-Url: http://git.asbjorn.it/?a=blobdiff_plain;f=src%2Feffects.js;h=40326e23da1b9a2a5f30b0bae31490bb82b2bfee;hb=8effe3a7dee91c833cc1774646da9d743600c64c;hp=97456ccc4b4cab163ac00faecef36b43df9f5f85;hpb=ba8938d444b9a49bdfb27213826ba108145c2e50;p=jquery.git diff --git a/src/effects.js b/src/effects.js index 97456cc..40326e2 100644 --- a/src/effects.js +++ b/src/effects.js @@ -320,7 +320,7 @@ jQuery.fx.prototype = { // Start an animation from one number to another custom: function( from, to, unit ) { - this.startTime = now(); + this.startTime = jQuery.now(); this.start = from; this.end = to; this.unit = unit || this.unit || "px"; @@ -366,7 +366,7 @@ jQuery.fx.prototype = { // Each step of an animation step: function( gotoEnd ) { - var t = now(), done = true; + var t = jQuery.now(), done = true; if ( gotoEnd || t >= this.options.duration + this.startTime ) { this.now = this.end;