File tree 1 file changed +12
-7
lines changed 1 file changed +12
-7
lines changed Original file line number Diff line number Diff line change @@ -62,13 +62,18 @@ PooledClass.addPoolingTo(
62
62
) ;
63
63
64
64
function handleTopLevelImpl ( bookKeeping ) {
65
- if ( bookKeeping . nativeEvent . path && bookKeeping . nativeEvent . path . length > 1 ) {
66
- // New browsers have a path attribute on native events
67
- handleTopLevelWithPath ( bookKeeping ) ;
68
- } else {
69
- // Legacy browsers don't have a path attribute on native events
70
- handleTopLevelWithoutPath ( bookKeeping ) ;
71
- }
65
+ // TODO: Re-enable event.path handling
66
+ //
67
+ // if (bookKeeping.nativeEvent.path && bookKeeping.nativeEvent.path.length > 1) {
68
+ // // New browsers have a path attribute on native events
69
+ // handleTopLevelWithPath(bookKeeping);
70
+ // } else {
71
+ // // Legacy browsers don't have a path attribute on native events
72
+ // handleTopLevelWithoutPath(bookKeeping);
73
+ // }
74
+
75
+ void handleTopLevelWithPath ; // temporarily unused
76
+ handleTopLevelWithoutPath ( bookKeeping ) ;
72
77
}
73
78
74
79
// Legacy browsers don't have a path attribute on native events
You can’t perform that action at this time.
0 commit comments