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:
155ecf4
)
Fix missing var declaration for the length iterator.
author
jeresig
<jeresig@gmail.com>
Mon, 18 Jan 2010 22:19:44 +0000
(17:19 -0500)
committer
jeresig
<jeresig@gmail.com>
Mon, 18 Jan 2010 22:19:44 +0000
(17:19 -0500)
src/event.js
patch
|
blob
|
history
diff --git
a/src/event.js
b/src/event.js
index
fb28cb9
..
af78543
100644
(file)
--- a/
src/event.js
+++ b/
src/event.js
@@
-861,7
+861,7
@@
jQuery.fn.extend({
function liveHandler( event ) {
var stop = true, elems = [], selectors = [], args = arguments,
- related, match, fn, elem, j, i, data,
+ related, match, fn, elem, j, i, l, data,
live = jQuery.extend({}, jQuery.data( this, "events" ).live);
for ( j in live ) {