aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorjeresig <jeresig@gmail.com>2010-01-18 17:19:44 -0500
committerjeresig <jeresig@gmail.com>2010-01-18 17:19:44 -0500
commit257a4693f4870489e779ae75e5c8ce5374b080a0 (patch)
tree485342a67898a301b8762cfff700a983230ab82a /src
parent155ecf42a0033785160e071507f0795b3c86a32b (diff)
downloadjquery-257a4693f4870489e779ae75e5c8ce5374b080a0.tar.gz
jquery-257a4693f4870489e779ae75e5c8ce5374b080a0.zip
Fix missing var declaration for the length iterator.
Diffstat (limited to 'src')
-rw-r--r--src/event.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/event.js b/src/event.js
index fb28cb904..af7854329 100644
--- 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 ) {