Sha256: 63754fc99853612319bbd01a2a8f11ab9024c78224f4d2d42d50b535ee846aa2

Contents?: true

Size: 1.48 KB

Versions: 173

Compression:

Stored size: 1.48 KB

Contents

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;
} );

Version data entries

173 entries across 155 versions & 23 rubygems

Version Path
trusty-cms-3.3.5 spec/dummy/node_modules/jquery/src/event/focusin.js
optimacms-0.3.35 spec/dummy/node_modules/jquery/src/event/focusin.js
optimacms-0.3.35 spec/dummy/node_modules/jquery-ujs/node_modules/jquery/src/event/focusin.js
optimacms-0.3.35 node_modules/tinymce-dist/node_modules/jquery/src/event/focusin.js
optimacms-0.3.35 node_modules/jquery/src/event/focusin.js
optimacms-0.3.35 node_modules/jquery-ujs/node_modules/jquery/src/event/focusin.js
optimacms-0.3.34 spec/dummy/node_modules/jquery/src/event/focusin.js
optimacms-0.3.34 spec/dummy/node_modules/jquery-ujs/node_modules/jquery/src/event/focusin.js
optimacms-0.3.34 node_modules/tinymce-dist/node_modules/jquery/src/event/focusin.js
optimacms-0.3.34 node_modules/jquery/src/event/focusin.js
optimacms-0.3.34 node_modules/jquery-ujs/node_modules/jquery/src/event/focusin.js
trusty-cms-3.3.3 spec/dummy/node_modules/jquery/src/event/focusin.js
trusty-cms-3.3.2 spec/dummy/node_modules/jquery/src/event/focusin.js
trusty-cms-3.3.1 spec/dummy/node_modules/jquery/src/event/focusin.js
trusty-cms-3.2.1 spec/dummy/node_modules/jquery/src/event/focusin.js
loco-rails-3.0.3 test/dummy/node_modules/jquery/src/event/focusin.js
trusty-cms-3.3.0 spec/dummy/node_modules/jquery/src/event/focusin.js
optimacms-0.3.30 spec/dummy/node_modules/jquery/src/event/focusin.js
trusty-cms-3.2.0 spec/dummy/node_modules/jquery/src/event/focusin.js
optimacms-0.3.29 spec/dummy/node_modules/jquery/src/event/focusin.js