diff options
Diffstat (limited to 'extension/content_scripts/notify.js')
-rw-r--r-- | extension/content_scripts/notify.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/extension/content_scripts/notify.js b/extension/content_scripts/notify.js index 57d32135d..47c839799 100644 --- a/extension/content_scripts/notify.js +++ b/extension/content_scripts/notify.js @@ -50,7 +50,7 @@ document.addEventListener("taler-create-reserve", function (e) { let uri = URI(chrome.extension.getURL("pages/confirm-create-reserve.html")); document.location.href = uri.query(params).href(); }); -document.addEventListener('taler-contract', function (e) { +document.addEventListener("taler-contract", function (e) { // 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")); |