File tree 1 file changed +14
-1
lines changed
1 file changed +14
-1
lines changed Original file line number Diff line number Diff line change @@ -31,9 +31,16 @@ function getContainer(context){
31
31
domUtils . ownerDocument ( context ) . body ;
32
32
}
33
33
34
+
35
+
36
+ let currentFocusListener ;
37
+
34
38
/**
35
39
* Firefox doesn't have a focusin event so using capture is easiest way to get bubbling
36
40
* IE8 can't do addEventListener, but does have onfocusin, so we use that in ie8
41
+ *
42
+ * We only allow one Listener at a time to avoid stack overflows
43
+ *
37
44
* @param {ReactElement|HTMLElement } context
38
45
* @param {Function } handler
39
46
*/
@@ -42,14 +49,20 @@ function onFocus(context, handler) {
42
49
let useFocusin = ! doc . addEventListener ;
43
50
let remove ;
44
51
52
+ if ( currentFocusListener )
53
+ currentFocusListener . remove ( ) ;
54
+
45
55
if ( useFocusin ) {
46
56
document . attachEvent ( 'onfocusin' , handler ) ;
47
57
remove = ( ) => document . detachEvent ( 'onfocusin' , handler ) ;
48
58
} else {
49
59
document . addEventListener ( 'focus' , handler , true ) ;
50
60
remove = ( ) => document . removeEventListener ( 'focus' , handler , true ) ;
51
61
}
52
- return { remove } ;
62
+
63
+ currentFocusListener = { remove }
64
+
65
+ return currentFocusListener ;
53
66
}
54
67
55
68
let scrollbarSize ;
You can’t perform that action at this time.
0 commit comments