@syncfusion/ej2-navigations 26.2.10 → 26.2.11

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -2495,7 +2495,7 @@ let MenuBase = class MenuBase extends Component {
2495
2495
  this.removeLIStateByClass([SELECTED], [wrapper]);
2496
2496
  }
2497
2497
  if (!cli || !cli.querySelector('.' + CARET)) {
2498
- if (!Browser.isIos || (Browser.isIos && !e.ctrlKey)) {
2498
+ if (navigator.platform.toUpperCase().indexOf('MAC') < 0 || (navigator.platform.toUpperCase().indexOf('MAC') >= 0 && !e.ctrlKey)) {
2499
2499
  this.closeMenu(null, e);
2500
2500
  }
2501
2501
  }