taler-typescript-core

Wallet core logic and WebUIs for various components
Log | Files | Refs | Submodules | README | LICENSE

commit d2e0386638c9904906f0de6830e83f7b854c6f40
parent 9b471718e3456acc9e993237bb968622f6f9dea2
Author: Florian Dold <florian.dold@gmail.com>
Date:   Sun,  2 Oct 2016 23:42:10 +0200

respond to taler-payment-succeeded

Diffstat:
Mcontent_scripts/notify.ts | 7+++++--
1 file changed, 5 insertions(+), 2 deletions(-)

diff --git a/content_scripts/notify.ts b/content_scripts/notify.ts @@ -283,6 +283,10 @@ namespace TalerNotify { }) }); + addHandler("taler-payment-succeeded", (msg: any, sendResponse: any) => { + sendResponse(); + }); + addHandler("taler-get-payment", (msg: any, sendResponse: any) => { const walletMsg = { type: "execute-payment", @@ -319,4 +323,4 @@ namespace TalerNotify { }); }); } -} -\ No newline at end of file +}