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:
parent
ba8938d444
commit
8effe3a7de
14 changed files with 141 additions and 115 deletions
4
src/effects.js
vendored
4
src/effects.js
vendored
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue