summaryrefslogtreecommitdiffstats
path: root/js/vendor/jquery/src/event.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/vendor/jquery/src/event.js')
-rw-r--r--js/vendor/jquery/src/event.js10
1 files changed, 5 insertions, 5 deletions
diff --git a/js/vendor/jquery/src/event.js b/js/vendor/jquery/src/event.js
index f38d70a40..8f04b89c1 100644
--- a/js/vendor/jquery/src/event.js
+++ b/js/vendor/jquery/src/event.js
@@ -379,8 +379,8 @@ jQuery.event = {
j = 0;
while ( (handleObj = matched.handlers[ j++ ]) && !event.isImmediatePropagationStopped() ) {
- // Triggered event must either 1) have no namespace, or
- // 2) have namespace(s) a subset or equal to those in the bound event (both can have no namespace).
+ // Triggered event must either 1) have no namespace, or 2) have namespace(s)
+ // a subset or equal to those in the bound event (both can have no namespace).
if ( !event.namespace_re || event.namespace_re.test( handleObj.namespace ) ) {
event.handleObj = handleObj;
@@ -530,7 +530,7 @@ jQuery.event = {
event.target = document;
}
- // Support: Safari 6.0+, Chrome < 28
+ // 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;
@@ -635,7 +635,7 @@ jQuery.Event = function( src, props ) {
// by a handler lower down the tree; reflect the correct value.
this.isDefaultPrevented = src.defaultPrevented ||
src.defaultPrevented === undefined &&
- // Support: Android < 4.0
+ // Support: Android<4.0
src.returnValue === false ?
returnTrue :
returnFalse;
@@ -725,8 +725,8 @@ jQuery.each({
};
});
-// Create "bubbling" focus and blur events
// Support: Firefox, Chrome, Safari
+// Create "bubbling" focus and blur events
if ( !support.focusinBubbles ) {
jQuery.each({ focus: "focusin", blur: "focusout" }, function( orig, fix ) {