File tree 2 files changed +3
-1
lines changed
2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -91,7 +91,7 @@ function attachOneDropdownAria($dropdown) {
91
91
92
92
// if there is an active item, use it (the user is navigating between items)
93
93
// otherwise use the "selected" for combobox (for the last selected item)
94
- let $active = $menu . find ( '> .item.active, > .item.selected' ) ;
94
+ const $active = $menu . find ( '> .item.active, > .item.selected' ) ;
95
95
96
96
// if there is an active item, use its id. if no active item or the dropdown is used as menu and is hidden, empty the active item
97
97
const activeId = $active . attr ( 'id' ) ;
Original file line number Diff line number Diff line change @@ -91,6 +91,8 @@ export function initGlobalCommon() {
91
91
const $uiDropdowns = $ ( '.ui.dropdown' ) ;
92
92
93
93
// do not init "custom" dropdowns, "custom" dropdowns are managed by their own code.
94
+ // NOTICE: some old Android Chrome browsers has a crash bug, this line triggers the bug,
95
+ // the browser crashes when users click the Issue Reaction Menu button ("return" before this line, no crash. after, crash)
94
96
$uiDropdowns . filter ( ':not(.custom)' ) . dropdown ( { fullTextSearch : 'exact' } ) ;
95
97
96
98
// The "jump" means this dropdown is mainly used for "menu" purpose,
You can’t perform that action at this time.
0 commit comments