Remove patch for very early versions of Opera 9 that made it impossible to animate values smaller than -10000. Fixes #7193. Thanks to igorw for initial patch & test case.
This commit is contained in:
parent
3e0cc81504
commit
4eeae8b0bc
2 changed files with 18 additions and 1 deletions
2
src/effects.js
vendored
2
src/effects.js
vendored
|
@ -337,7 +337,7 @@ jQuery.fx.prototype = {
|
|||
}
|
||||
|
||||
var r = parseFloat( jQuery.css( this.elem, this.prop ) );
|
||||
return r && r > -10000 ? r : 0;
|
||||
return r || 0;
|
||||
},
|
||||
|
||||
// Start an animation from one number to another
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue