Hey there,
I've just discovered an issue while using the DOMHandler in a plugin.
I have this code for defining the message handlers:
this.AddRuntimeMessageHandlers([
["open", (id, scopes, callback) => this._OpenWin(id, scopes, callback)],
]);
Sadly only the `id` param is defined. All other ones (`scopes` and `callback`) return undefined while using.
not sure if I do something wrong in calling the func:
Can anyone help me with this?