diff options
Diffstat (limited to 'extension/content_scripts/notify.ts')
-rw-r--r-- | extension/content_scripts/notify.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/extension/content_scripts/notify.ts b/extension/content_scripts/notify.ts index a75ab09cf..e2ffaefa9 100644 --- a/extension/content_scripts/notify.ts +++ b/extension/content_scripts/notify.ts @@ -57,7 +57,7 @@ document.addEventListener("taler-create-reserve", function(e: CustomEvent) { document.location.href = uri.query(params).href(); }); -document.addEventListener('taler-contract', function(e: CustomEvent) { +document.addEventListener("taler-contract", function(e: CustomEvent) { // XXX: the merchant should just give us the parsed data ... let offer = JSON.parse(e.detail); let uri = URI(chrome.extension.getURL("pages/confirm-contract.html")); |