mirror of
https://github.com/jquery/jquery.git
synced 2024-11-23 02:54:22 +00:00
Clean up comments, including browser support levels.
This commit is contained in:
parent
c228874db1
commit
e47dfc6309
@ -51,7 +51,6 @@ jQuery.event = {
|
||||
}
|
||||
|
||||
// Handle multiple events separated by a space
|
||||
// jQuery(...).bind("mouseover mouseout", fn);
|
||||
types = ( types || "" ).match( core_rnotwhite ) || [""];
|
||||
for ( ; t < types.length; t++ ) {
|
||||
|
||||
@ -343,7 +342,7 @@ jQuery.event = {
|
||||
|
||||
for ( cur = event.target; cur != this; cur = cur.parentNode || this ) {
|
||||
|
||||
// Don't process clicks (ONLY) on disabled elements (#6911, #8165, #11382, #11764)
|
||||
// Ignore clicks (ONLY) on disabled elements (#6911, #8165, #11382, #11764)
|
||||
if ( cur.disabled !== true || event.type !== "click" ) {
|
||||
selMatch = {};
|
||||
matches = [];
|
||||
@ -511,7 +510,7 @@ jQuery.event = {
|
||||
beforeunload: {
|
||||
postDispatch: function( event ) {
|
||||
|
||||
// Even when returnValue equals to undefined Firefox will still show alert
|
||||
// Support: Firefox 10+
|
||||
if ( event.result !== undefined ) {
|
||||
event.originalEvent.returnValue = event.result;
|
||||
}
|
||||
@ -621,6 +620,7 @@ jQuery.Event.prototype = {
|
||||
};
|
||||
|
||||
// Create mouseenter/leave events using mouseover/out and event-time checks
|
||||
// Support: Chrome 15+
|
||||
jQuery.each({
|
||||
mouseenter: "mouseover",
|
||||
mouseleave: "mouseout"
|
||||
@ -648,6 +648,7 @@ jQuery.each({
|
||||
});
|
||||
|
||||
// Create "bubbling" focus and blur events
|
||||
// Support: Firefox 10+
|
||||
if ( !jQuery.support.focusinBubbles ) {
|
||||
jQuery.each({ focus: "focusin", blur: "focusout" }, function( orig, fix ) {
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user