Made it so that you no longer need to build jQuery in order to run the test suite (but you'll still need a checkout of QUnit and Sizzle, at least).

This commit is contained in:
jeresig 2010-03-23 12:12:16 -04:00
parent ba8938d444
commit 8effe3a7de
14 changed files with 141 additions and 115 deletions

4
src/effects.js vendored
View file

@ -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;