Forgot the 'var' statement, causing variables to leak. (Bug #1592)
This commit is contained in:
parent
3dabd7ec30
commit
dbca9cbf62
1 changed files with 2 additions and 2 deletions
|
@ -100,8 +100,8 @@ jQuery.fn.extend({
|
|||
start = e.cur(true) || 0;
|
||||
|
||||
if ( parts ) {
|
||||
end = parseFloat(parts[2]),
|
||||
unit = parts[3] || "px";
|
||||
var end = parseFloat(parts[2]),
|
||||
unit = parts[3] || "px";
|
||||
|
||||
// We need to compute starting value
|
||||
if ( unit != "px" ) {
|
||||
|
|
Loading…
Reference in a new issue