git.asbjorn.biz
/
jquery.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
3dabd7e
)
Forgot the 'var' statement, causing variables to leak. (Bug #1592)
author
John Resig
<jeresig@gmail.com>
Sat, 15 Sep 2007 03:12:56 +0000
(
03:12
+0000)
committer
John Resig
<jeresig@gmail.com>
Sat, 15 Sep 2007 03:12:56 +0000
(
03:12
+0000)
src/fx.js
patch
|
blob
|
history
diff --git
a/src/fx.js
b/src/fx.js
index
d5122f1
..
d75f3d0
100644
(file)
--- a/
src/fx.js
+++ b/
src/fx.js
@@
-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" ) {