Make sure that live focus and blur events also bind to the regular events, to handle triggered events. Fixes #6055.
This commit is contained in:
parent
467063a2e2
commit
dd5c26304a
2 changed files with 17 additions and 2 deletions
|
@ -956,7 +956,14 @@ jQuery.each(["live", "die"], function( i, name ) {
|
|||
}
|
||||
|
||||
preType = type;
|
||||
type = (liveMap[ type ] || type) + namespaces;
|
||||
|
||||
if ( type === "focus" || type === "blur" ) {
|
||||
types.push( liveMap[ type ] + namespaces );
|
||||
type = type + namespaces;
|
||||
|
||||
} else {
|
||||
type = (liveMap[ type ] || type) + namespaces;
|
||||
}
|
||||
|
||||
if ( name === "live" ) {
|
||||
// bind live handler
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue