Derp, had parseInt on the brain. Thanks karbassi in 6541eb9d80.

This commit is contained in:
John Resig 2010-09-17 17:02:03 -04:00
parent 9dd70a44ad
commit 2d70dc9c43
2 changed files with 4 additions and 4 deletions

2
src/effects.js vendored
View file

@ -316,7 +316,7 @@ jQuery.fx.prototype = {
return this.elem[ this.prop ];
}
var r = parseFloat( jQuery.css( this.elem, this.prop ), 10 );
var r = parseFloat( jQuery.css( this.elem, this.prop ) );
return r && r > -10000 ? r : 0;
},