aboutsummaryrefslogtreecommitdiffstats
path: root/src/event/focusin.js
diff options
context:
space:
mode:
authorMichał Gołębiowski-Owczarek <m.goleb@gmail.com>2019-04-29 21:13:36 +0200
committerGitHub <noreply@github.com>2019-04-29 21:13:36 +0200
commit8a741376937dfacf9f82b2b88f93b239fe267435 (patch)
tree8a98a5e76134c9eaacad57933e74f7d0077e85cd /src/event/focusin.js
parent8fae21200e80647fec4389995c4879948d11ad66 (diff)
downloadjquery-8a741376937dfacf9f82b2b88f93b239fe267435.tar.gz
jquery-8a741376937dfacf9f82b2b88f93b239fe267435.zip
Event: Stop shimming focusin & focusout events
Latest versions of all browsers now implement focusin & focusout natively and they all converged on a common event order so it doesn't make much sense for us to normalize it to a different order anymore. Note that it means we no longer guarantee that focusin fires before focus and focusout before blur. Fixes gh-4300 Closes gh-4362
Diffstat (limited to 'src/event/focusin.js')
-rw-r--r--src/event/focusin.js55
1 files changed, 0 insertions, 55 deletions
diff --git a/src/event/focusin.js b/src/event/focusin.js
deleted file mode 100644
index 7faef2981..000000000
--- a/src/event/focusin.js
+++ /dev/null
@@ -1,55 +0,0 @@
-define( [
- "../core",
- "../data/var/dataPriv",
- "./support",
-
- "../event",
- "./trigger"
-], function( jQuery, dataPriv, support ) {
-
-"use strict";
-
-// Support: Firefox <=44
-// Firefox doesn't have focus(in | out) events
-// Related ticket - https://bugzilla.mozilla.org/show_bug.cgi?id=687787
-//
-// Support: Chrome <=48 - 49, Safari <=9.0 - 9.1
-// focus(in | out) events fire after focus & blur events,
-// which is spec violation - http://www.w3.org/TR/DOM-Level-3-Events/#events-focusevent-event-order
-// Related ticket - https://bugs.chromium.org/p/chromium/issues/detail?id=449857
-if ( !support.focusin ) {
- jQuery.each( { focus: "focusin", blur: "focusout" }, function( orig, fix ) {
-
- // Attach a single capturing handler on the document while someone wants focusin/focusout
- var handler = function( event ) {
- jQuery.event.simulate( fix, event.target, jQuery.event.fix( event ) );
- };
-
- jQuery.event.special[ fix ] = {
- setup: function() {
- var doc = this.ownerDocument || this,
- attaches = dataPriv.access( doc, fix );
-
- if ( !attaches ) {
- doc.addEventListener( orig, handler, true );
- }
- dataPriv.access( doc, fix, ( attaches || 0 ) + 1 );
- },
- teardown: function() {
- var doc = this.ownerDocument || this,
- attaches = dataPriv.access( doc, fix ) - 1;
-
- if ( !attaches ) {
- doc.removeEventListener( orig, handler, true );
- dataPriv.remove( doc, fix );
-
- } else {
- dataPriv.access( doc, fix, attaches );
- }
- }
- };
- } );
-}
-
-return jQuery;
-} );