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
card-mod-bootstrap-0.18.1 vendor/bootswatch/docs/3/bower_components/jquery/src/event/focusin.js
card-mod-bootstrap-0.18.0 vendor/bootswatch/docs/3/bower_components/jquery/src/event/focusin.js
card-mod-bootstrap-0.17.0 vendor/bootswatch/docs/3/bower_components/jquery/src/event/focusin.js
optimacms-0.1.61 spec/dummy/node_modules/jquery/src/event/focusin.js
card-mod-bootstrap-0.16.0 vendor/bootswatch/docs/3/bower_components/jquery/src/event/focusin.js
card-mod-bootstrap-0.15.6 vendor/bootswatch/docs/3/bower_components/jquery/src/event/focusin.js
card-mod-bootstrap-0.15.5 vendor/bootswatch/docs/3/bower_components/jquery/src/event/focusin.js
card-mod-bootstrap-0.15.4 vendor/bootswatch/docs/3/bower_components/jquery/src/event/focusin.js
card-mod-bootstrap-0.15.3 vendor/bootswatch/docs/3/bower_components/jquery/src/event/focusin.js
card-mod-bootstrap-0.15.1.2 vendor/bootswatch/docs/3/bower_components/jquery/src/event/focusin.js
card-mod-bootstrap-0.15.2.pre1 vendor/bootswatch/docs/3/bower_components/jquery/src/event/focusin.js
card-mod-bootstrap-0.15.1.1 vendor/bootswatch/docs/3/bower_components/jquery/src/event/focusin.js
card-mod-bootstrap-0.15.1 vendor/bootswatch/docs/3/bower_components/jquery/src/event/focusin.js
card-mod-bootstrap-0.15.0 vendor/bootswatch/docs/3/bower_components/jquery/src/event/focusin.js
card-mod-bootstrap-0.14.2 vendor/bootswatch/docs/3/bower_components/jquery/src/event/focusin.js
card-mod-bootstrap-0.14.1 vendor/bootswatch/docs/3/bower_components/jquery/src/event/focusin.js
card-mod-bootstrap-0.14.0 vendor/bootswatch/docs/3/bower_components/jquery/src/event/focusin.js
card-mod-bootstrap-0.13.4 vendor/bootswatch/docs/3/bower_components/jquery/src/event/focusin.js
card-mod-bootstrap-0.13.3 vendor/bootswatch/docs/3/bower_components/jquery/src/event/focusin.js
card-mod-bootstrap-0.13.2 vendor/bootswatch/docs/3/bower_components/jquery/src/event/focusin.js