From 7e4ccc83111824a7985a4b4ebacd8a10115e8d2e Mon Sep 17 00:00:00 2001 From: Ralf Becker Date: Wed, 3 Mar 2021 19:13:22 +0200 Subject: [PATCH] fix some points in top-menu and probably some other stuff using et2_call were not working --- api/js/jsapi/egw.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/js/jsapi/egw.js b/api/js/jsapi/egw.js index 76984ad4f3..e584d9d9b6 100644 --- a/api/js/jsapi/egw.js +++ b/api/js/jsapi/egw.js @@ -478,5 +478,5 @@ var exports = {}; */ function et2_call(_func) { - return egw.applyFunc(_func, [].slice.call(arguments, 1), this); + return egw.applyFunc(_func, [].slice.call(arguments, 1)); }