X-Git-Url: http://git.asbjorn.it/?a=blobdiff_plain;f=src%2Feffects.js;h=40326e23da1b9a2a5f30b0bae31490bb82b2bfee;hb=b3ccf2f2881d9ad988aba1cf3ccffb810063ab29;hp=97456ccc4b4cab163ac00faecef36b43df9f5f85;hpb=656fe92178fda539d91fe31965b28bccff484778;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;