From e6b04ac99607acc31c710883881296d7a83bc34e Mon Sep 17 00:00:00 2001 From: ralf Date: Mon, 8 Jul 2024 09:48:17 +0200 Subject: [PATCH] do not require kdots in 23.1 --- api/js/egw_action/egw_menu.ts | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/api/js/egw_action/egw_menu.ts b/api/js/egw_action/egw_menu.ts index 3306ae24e3..6701bfbf79 100755 --- a/api/js/egw_action/egw_menu.ts +++ b/api/js/egw_action/egw_menu.ts @@ -19,7 +19,6 @@ import { EGW_KEY_ENTER, EGW_KEY_ESCAPE } from "./egw_action_constants"; -import {EgwFramework} from "../../../kdots/js/EgwFramework"; //Global variable which is used to store the currently active menu so that it //may be closed when another menu opens @@ -213,14 +212,7 @@ export class egwMenu if (this.instance == null && this._checkImpl) { //Obtain a new egwMenuImpl object and pass this instance to it - if(window.framework instanceof EgwFramework) - { - this.instance = new EgwMenuShoelace(this.children); - } - else - { - this.instance = new egwMenuImpl(this.children); - } + this.instance = new egwMenuImpl(this.children); _egw_active_menu = this;