aboutsummaryrefslogtreecommitdiff
path: root/src/webex/pages/popup.tsx
diff options
context:
space:
mode:
authorFlorian Dold <florian.dold@gmail.com>2017-05-29 01:48:46 +0200
committerFlorian Dold <florian.dold@gmail.com>2017-05-29 01:48:46 +0200
commit5755f7a81433dea3754f9f86d90884cf23b7ad64 (patch)
treefb1943180cf6cbf7de6cb36a327232b2b3999b13 /src/webex/pages/popup.tsx
parentf5a20cc822139190c32e54f395fe857a8ea240ac (diff)
downloadwallet-core-5755f7a81433dea3754f9f86d90884cf23b7ad64.tar.xz
fix paths previously missed during restructuring
Diffstat (limited to 'src/webex/pages/popup.tsx')
-rw-r--r--src/webex/pages/popup.tsx14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/webex/pages/popup.tsx b/src/webex/pages/popup.tsx
index a806cfef9..f710156a5 100644
--- a/src/webex/pages/popup.tsx
+++ b/src/webex/pages/popup.tsx
@@ -234,7 +234,7 @@ class WalletBalanceView extends React.Component<any, any> {
renderEmpty(): JSX.Element {
let helpLink = (
- <ExtensionLink target="/src/pages/help/empty-wallet.html">
+ <ExtensionLink target="/src/webex/pages/help/empty-wallet.html">
{i18n.str`help`}
</ExtensionLink>
);
@@ -316,9 +316,9 @@ class WalletBalanceView extends React.Component<any, any> {
</p>
);
});
- let link = chrome.extension.getURL("/src/pages/auditors.html");
+ let link = chrome.extension.getURL("/src/webex/pages/auditors.html");
let linkElem = <a className="actionLink" href={link} target="_blank">Trusted Auditors and Exchanges</a>;
- let paybackLink = chrome.extension.getURL("/src/pages/payback.html");
+ let paybackLink = chrome.extension.getURL("/src/webex/pages/payback.html");
let paybackLinkElem = <a className="actionLink" href={link} target="_blank">Trusted Auditors and Exchanges</a>;
return (
<div>
@@ -489,16 +489,16 @@ function confirmReset() {
function WalletDebug(props: any) {
return (<div>
<p>Debug tools:</p>
- <button onClick={openExtensionPage("/src/pages/popup.html")}>
+ <button onClick={openExtensionPage("/src/webex/pages/popup.html")}>
wallet tab
</button>
- <button onClick={openExtensionPage("/src/pages/show-db.html")}>
+ <button onClick={openExtensionPage("/src/webex/pages/show-db.html")}>
show db
</button>
- <button onClick={openExtensionPage("/src/pages/tree.html")}>
+ <button onClick={openExtensionPage("/src/webex/pages/tree.html")}>
show tree
</button>
- <button onClick={openExtensionPage("/src/pages/logs.html")}>
+ <button onClick={openExtensionPage("/src/webex/pages/logs.html")}>
show logs
</button>
<br />