Skip to content

Commit e539bac

Browse files
authored
Event: Don't break focus triggering after .on(focus).off(focus)
The `_default` function in the special event settings for focus/blur has always returned `true` since gh-4813 as the event was already being fired from `leverageNative`. However, that only works if there's an active handler on that element; this made a quick consecutive call: ```js elem.on( "focus", function() {} ).off( "focus" ); ``` make subsequent `.trigger( "focus" )` calls to not do any triggering. The solution, already used in a similar `_default` method for the `click` event, is to check for the `dataPriv` entry on the element for the focus event (similarly for blur). Fixes gh-4867 Closes gh-4885
1 parent a702746 commit e539bac

File tree

2 files changed

+20
-4
lines changed

2 files changed

+20
-4
lines changed

src/event.js

+4-4
Original file line numberDiff line numberDiff line change
@@ -746,10 +746,10 @@ jQuery.each( { focus: "focusin", blur: "focusout" }, function( type, delegateTyp
746746
return true;
747747
},
748748

749-
// Suppress native focus or blur as it's already being fired
750-
// in leverageNative.
751-
_default: function() {
752-
return true;
749+
// Suppress native focus or blur if we're currently inside
750+
// a leveraged native-event stack
751+
_default: function( event ) {
752+
return dataPriv.get( event.target, type );
753753
},
754754

755755
delegateType: delegateType

test/unit/event.js

+16
Original file line numberDiff line numberDiff line change
@@ -3325,6 +3325,22 @@ QUnit.test( "focus change during a focus handler (gh-4382)", function( assert )
33253325
} );
33263326
} );
33273327

3328+
QUnit.test( "trigger(focus) works after .on(focus).off(focus) (gh-4867)", function( assert ) {
3329+
assert.expect( 1 );
3330+
3331+
var input = jQuery( "<input />" );
3332+
3333+
input.appendTo( "#qunit-fixture" );
3334+
3335+
input
3336+
.on( "focus", function() {} )
3337+
.off( "focus" );
3338+
3339+
input.trigger( "focus" );
3340+
3341+
assert.equal( document.activeElement, input[ 0 ], "input has focus" );
3342+
} );
3343+
33283344
// TODO replace with an adaptation of
33293345
// https://github.com/jquery/jquery/pull/1367/files#diff-a215316abbaabdf71857809e8673ea28R2464
33303346
( function() {

0 commit comments

Comments
 (0)