Procházet zdrojové kódy

Menu: fix arrow navigation of SubMenu (#10304)

杨奕 před 7 roky
rodič
revize
4a6bd309a4
1 změnil soubory, kde provedl 2 přidání a 2 odebrání
  1. 2 2
      src/utils/menu/aria-menuitem.js

+ 2 - 2
src/utils/menu/aria-menuitem.js

@@ -23,12 +23,12 @@ MenuItem.prototype.addListeners = function() {
     switch (event.keyCode) {
       case keys.down:
         Utils.triggerEvent(event.currentTarget, 'mouseenter');
-        this.submenu.gotoSubIndex(0);
+        this.submenu && this.submenu.gotoSubIndex(0);
         prevDef = true;
         break;
       case keys.up:
         Utils.triggerEvent(event.currentTarget, 'mouseenter');
-        this.submenu.gotoSubIndex(this.submenu.subMenuItems.length - 1);
+        this.submenu && this.submenu.gotoSubIndex(this.submenu.subMenuItems.length - 1);
         prevDef = true;
         break;
       case keys.tab: