From 5755f7a81433dea3754f9f86d90884cf23b7ad64 Mon Sep 17 00:00:00 2001 From: Florian Dold Date: Mon, 29 May 2017 01:48:46 +0200 Subject: fix paths previously missed during restructuring --- src/webex/notify.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/webex/notify.ts') diff --git a/src/webex/notify.ts b/src/webex/notify.ts index 733367a59..23e73d145 100644 --- a/src/webex/notify.ts +++ b/src/webex/notify.ts @@ -388,7 +388,7 @@ async function processProposal(proposal: any) { const offerId = await saveOffer(proposal); const uri = new URI(chrome.extension.getURL( - "/src/pages/confirm-contract.html")); + "/src/webex/pages/confirm-contract.html")); const params = { offerId: offerId.toString(), }; @@ -512,7 +512,7 @@ function registerHandlers() { suggested_exchange_url: msg.suggested_exchange_url, wt_types: JSON.stringify(msg.wt_types), }; - const uri = new URI(chrome.extension.getURL("/src/pages/confirm-create-reserve.html")); + const uri = new URI(chrome.extension.getURL("/src/webex/pages/confirm-create-reserve.html")); const redirectUrl = uri.query(params).href(); window.location.href = redirectUrl; }); @@ -521,7 +521,7 @@ function registerHandlers() { const params = { req: JSON.stringify(msg), }; - const uri = new URI(chrome.extension.getURL("/src/pages/add-auditor.html")); + const uri = new URI(chrome.extension.getURL("/src/webex/pages/add-auditor.html")); const redirectUrl = uri.query(params).href(); window.location.href = redirectUrl; }); -- cgit v1.2.3