From 2e3be2b1b7c569ece48f11c5267a7f0a9ad374db Mon Sep 17 00:00:00 2001 From: milan Date: Thu, 25 Jul 2024 14:21:32 +0200 Subject: [PATCH] egwActionObjectInterface now has empty object handlers on default --- api/js/egw_action/egw_action.ts | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/api/js/egw_action/egw_action.ts b/api/js/egw_action/egw_action.ts index 47acd52452..e5b51b318a 100755 --- a/api/js/egw_action/egw_action.ts +++ b/api/js/egw_action/egw_action.ts @@ -266,16 +266,17 @@ export class egwActionObjectInterface implements EgwActionObjectInterface { stateChangeContext = null; reconnectActionsCallback = null; reconnectActionsContext = null; + handlers = {}; doGetDOMNode() { return null; }; - // or not. + doSetState(_state) { }; - // or EGW_AI_DRAG_OUT + doTriggerEvent(_event, _data) { return false; };