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:
150e44c
)
Make sure that live handlers don't stop inline scripts from executing. Fixes #5835.
author
Irae Brasil
<irae@irae.pro.br>
Sat, 23 Jan 2010 16:14:29 +0000
(11:14 -0500)
committer
jeresig
<jeresig@gmail.com>
Sat, 23 Jan 2010 16:14:29 +0000
(11:14 -0500)
src/event.js
patch
|
blob
|
history
diff --git
a/src/event.js
b/src/event.js
index
5271460
..
31ab8a3
100644
(file)
--- a/
src/event.js
+++ b/
src/event.js
@@
-860,7
+860,7
@@
jQuery.fn.extend({
});
function liveHandler( event ) {
- var stop = true, elems = [], selectors = [], args = arguments,
+ var stop, elems = [], selectors = [], args = arguments,
related, match, fn, elem, j, i, l, data,
live = jQuery.extend({}, jQuery.data( this, "events" ).live);