aboutsummaryrefslogtreecommitdiff
path: root/content_scripts
diff options
context:
space:
mode:
authorFlorian Dold <florian.dold@gmail.com>2016-09-23 18:28:50 +0200
committerFlorian Dold <florian.dold@gmail.com>2016-09-23 18:28:50 +0200
commitc590e03aea9227cabb91c9e5426a92d2b3cb3bc3 (patch)
treee4a6067f04f18a7527b20a5543b6f23bb6e2c004 /content_scripts
parent5737c121ca3635a4afee0c017b7652eb39ee4ab1 (diff)
downloadwallet-core-c590e03aea9227cabb91c9e5426a92d2b3cb3bc3.tar.xz
fix event passing
Diffstat (limited to 'content_scripts')
-rw-r--r--content_scripts/notify.ts11
1 files changed, 9 insertions, 2 deletions
diff --git a/content_scripts/notify.ts b/content_scripts/notify.ts
index 8d8d21ab6..6037aa7c8 100644
--- a/content_scripts/notify.ts
+++ b/content_scripts/notify.ts
@@ -97,13 +97,19 @@ namespace TalerNotify {
*/
function addHandler(type: string, handler: HandlerFn) {
let handlerWrap = (e: CustomEvent) => {
- let callId: number|undefined = e.detail.callId;
+ if (e.type != type) {
+ throw Error(`invariant violated`);
+ }
+ let callId: number|undefined = undefined;
+ if (e.detail && e.detail.callId != undefined) {
+ callId = e.detail.callId;
+ }
let responder = (msg?: any) => {
let fullMsg = Object.assign({}, msg, {callId});
let evt = new CustomEvent(type + "-result", {detail: fullMsg});
document.dispatchEvent(evt);
};
- handler(e, responder);
+ handler(e.detail, responder);
};
document.addEventListener(type, handlerWrap);
handlers.push({type, listener: handlerWrap});
@@ -149,6 +155,7 @@ namespace TalerNotify {
addHandler("taler-confirm-contract", (msg: any) => {
+ console.log("got msg", msg);
if (!msg.contract_wrapper) {
console.error("contract wrapper missing");
return;