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,7 +100,7 @@ jQuery.fn.extend({
|
||||||
start = e.cur(true) || 0;
|
start = e.cur(true) || 0;
|
||||||
|
|
||||||
if ( parts ) {
|
if ( parts ) {
|
||||||
end = parseFloat(parts[2]),
|
var end = parseFloat(parts[2]),
|
||||||
unit = parts[3] || "px";
|
unit = parts[3] || "px";
|
||||||
|
|
||||||
// We need to compute starting value
|
// We need to compute starting value
|
||||||
|
|
Loading…
Reference in a new issue