Skip to content

Commit b3e4a7e

Browse files
committed
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 (cherry picked from commit e539bac)
1 parent 752b898 commit b3e4a7e

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
@@ -778,10 +778,10 @@ jQuery.each( { focus: "focusin", blur: "focusout" }, function( type, delegateTyp
778778
return true;
779779
},
780780

781-
// Suppress native focus or blur as it's already being fired
782-
// in leverageNative.
783-
_default: function() {
784-
return true;
781+
// Suppress native focus or blur if we're currently inside
782+
// a leveraged native-event stack
783+
_default: function( event ) {
784+
return dataPriv.get( event.target, type );
785785
},
786786

787787
delegateType: delegateType

test/unit/event.js

+16
Original file line numberDiff line numberDiff line change
@@ -3297,6 +3297,22 @@ QUnit.test( "focus change during a focus handler (gh-4382)", function( assert )
32973297
} );
32983298
} );
32993299

3300+
QUnit.test( "trigger(focus) works after .on(focus).off(focus) (gh-4867)", function( assert ) {
3301+
assert.expect( 1 );
3302+
3303+
var input = jQuery( "<input />" );
3304+
3305+
input.appendTo( "#qunit-fixture" );
3306+
3307+
input
3308+
.on( "focus", function() {} )
3309+
.off( "focus" );
3310+
3311+
input.trigger( "focus" );
3312+
3313+
assert.equal( document.activeElement, input[ 0 ], "input has focus" );
3314+
} );
3315+
33003316
// TODO replace with an adaptation of
33013317
// https://github.com/jquery/jquery/pull/1367/files#diff-a215316abbaabdf71857809e8673ea28R2464
33023318
( function() {

0 commit comments

Comments
 (0)