Permalink
Show file tree
Hide file tree
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
1) corrected box-sizing rules order - the unprefixed value should always be the last one 2) removed last semi-colons in CSS rules 3) updated support comments code review changes + more consistent comment spacing
- Loading branch information
Showing
9 changed files
with
25 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -508,7 +508,7 @@ jQuery.event = { | ||
event[ prop ] = originalEvent[ prop ]; | ||
} | ||
|
||
// Support: Chrome 23+, Safari? | ||
// Support: Safari 6.0+, Chrome < 28 | ||
// Target should not be a text node (#504, #13143) | ||
if ( event.target.nodeType === 3 ) { | ||
event.target = event.target.parentNode; | ||
@@ -554,7 +554,8 @@ jQuery.event = { | ||
beforeunload: { | ||
postDispatch: function( event ) { | ||
|
||
// Support: Firefox 10+ | ||
// Support: Firefox 20+ | ||
// Firefox doesn't alert if the returnValue field is not set. | ||
This comment has been minimized.
Sorry, something went wrong.
This comment has been minimized.
Sorry, something went wrong.
markelog
Member
|
||
if ( event.result !== undefined ) { | ||
event.originalEvent.returnValue = event.result; | ||
} | ||
@@ -685,7 +686,7 @@ jQuery.each({ | ||
}); | ||
|
||
// Create "bubbling" focus and blur events | ||
// Support: Firefox 10+ | ||
// Support: Firefox, Chrome, Safari | ||
if ( !jQuery.support.focusinBubbles ) { | ||
jQuery.each({ focus: "focusin", blur: "focusout" }, function( orig, fix ) { | ||
|
||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@mzgol this is incorrect, now you are confusing everyone :-(