File tree Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -91,7 +91,7 @@ function attachOneDropdownAria($dropdown) {
9191
9292 // if there is an active item, use it (the user is navigating between items)
9393 // 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' ) ;
9595
9696 // 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
9797 const activeId = $active . attr ( 'id' ) ;
Original file line number Diff line number Diff line change @@ -91,6 +91,8 @@ export function initGlobalCommon() {
9191 const $uiDropdowns = $ ( '.ui.dropdown' ) ;
9292
9393 // 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)
9496 $uiDropdowns . filter ( ':not(.custom)' ) . dropdown ( { fullTextSearch : 'exact' } ) ;
9597
9698 // The "jump" means this dropdown is mainly used for "menu" purpose,
You can’t perform that action at this time.
0 commit comments