From 1b2897c03b08e730a2e965e50bbd2104a7a81eef Mon Sep 17 00:00:00 2001 From: Florian Dold Date: Fri, 4 Mar 2016 18:09:19 +0100 Subject: more const-ness --- content_scripts/notify.ts | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) (limited to 'content_scripts') diff --git a/content_scripts/notify.ts b/content_scripts/notify.ts index e53a11c93..a37617726 100644 --- a/content_scripts/notify.ts +++ b/content_scripts/notify.ts @@ -43,14 +43,14 @@ namespace TalerNotify { return url; } - let handlers = []; + const handlers = []; let connected = false; // Hack to know when the extension is unloaded let port; - let connect = (dh) => { + const connect = (dh) => { port = chrome.runtime.connect(); port.onDisconnect.addListener(dh); chrome.runtime.sendMessage({type: "ping"}, () => { @@ -77,7 +77,7 @@ namespace TalerNotify { connect(disconectHandler); function registerHandlers() { - let $ = (x) => document.getElementById(x); + const $ = (x) => document.getElementById(x); function addHandler(type, listener) { document.addEventListener(type, listener); @@ -134,14 +134,14 @@ namespace TalerNotify { return; } - let offer = e.detail.contract_wrapper; + const offer = e.detail.contract_wrapper; if (!offer.contract) { console.error("contract field missing"); return; } - let msg = { + const msg = { type: "check-repurchase", detail: { contract: offer.contract @@ -161,12 +161,12 @@ namespace TalerNotify { resp.existingContractHash); } else { - let uri = URI(chrome.extension.getURL("pages/confirm-contract.html")); - let params = { + const uri = URI(chrome.extension.getURL("pages/confirm-contract.html")); + const params = { offer: JSON.stringify(offer), merchantPageUrl: document.location.href, }; - let target = uri.query(params).href(); + const target = uri.query(params).href(); if (e.detail.replace_navigation === true) { document.location.replace(target); } else { @@ -183,8 +183,8 @@ namespace TalerNotify { console.log("field 'pay_url' missing in taler-execute-payment event"); return; } - let payUrl = e.detail.pay_url; - let msg = { + const payUrl = e.detail.pay_url; + const msg = { type: "execute-payment", detail: { H_contract: e.detail.H_contract, -- cgit v1.2.3