1
0
mirror of https://github.com/EGroupware/egroupware.git synced 2025-07-19 23:46:11 +02:00

egwActionObjectInterface now has empty object handlers on default

This commit is contained in:
milan
2024-07-25 14:21:32 +02:00
committed by ralf
parent ba40b800d8
commit 8289f01365

@ -267,16 +267,17 @@ export class egwActionObjectInterface implements EgwActionObjectInterface {
stateChangeContext = null; stateChangeContext = null;
reconnectActionsCallback = null; reconnectActionsCallback = null;
reconnectActionsContext = null; reconnectActionsContext = null;
handlers = {};
doGetDOMNode() { doGetDOMNode() {
return null; return null;
}; };
// or not. // or not.
doSetState(_state) { doSetState(_state) {
}; };
// or EGW_AI_DRAG_OUT // or EGW_AI_DRAG_OUT
doTriggerEvent(_event, _data) { doTriggerEvent(_event, _data) {
return false; return false;
}; };