mirror of
https://github.com/jquery/jquery.git
synced 2026-01-24 06:57:55 -05:00
We don't do end of line comments, move them above.
This commit is contained in:
@@ -33,7 +33,7 @@ jQuery.event = {
|
||||
if ( handler === false ) {
|
||||
handler = returnFalse;
|
||||
} else if ( !handler ) {
|
||||
// Fixes bug #7229. Fix recommended by jdalton
|
||||
// Fixes bug #7229. Fix recommended by jdalton
|
||||
return;
|
||||
}
|
||||
|
||||
@@ -490,7 +490,8 @@ jQuery.event = {
|
||||
|
||||
// Fix target property, if necessary
|
||||
if ( !event.target ) {
|
||||
event.target = event.srcElement || document; // Fixes #1925 where srcElement might not be defined either
|
||||
// Fixes #1925 where srcElement might not be defined either
|
||||
event.target = event.srcElement || document;
|
||||
}
|
||||
|
||||
// check if target is a textnode (safari)
|
||||
|
||||
@@ -7,7 +7,8 @@ var rinlinejQuery = / jQuery\d+="(?:\d+|null)"/g,
|
||||
rtbody = /<tbody/i,
|
||||
rhtml = /<|&#?\w+;/,
|
||||
rnocache = /<(?:script|object|embed|option|style)/i,
|
||||
rchecked = /checked\s*(?:[^=]|=\s*.checked.)/i, // checked="checked" or checked (html5)
|
||||
// checked="checked" or checked (html5)
|
||||
rchecked = /checked\s*(?:[^=]|=\s*.checked.)/i,
|
||||
raction = /\=([^="'>\s]+\/)>/g,
|
||||
wrapMap = {
|
||||
option: [ 1, "<select multiple='multiple'>", "</select>" ],
|
||||
|
||||
Reference in New Issue
Block a user