aboutsummaryrefslogtreecommitdiff
path: root/extension/popup/balance-overview.html
diff options
context:
space:
mode:
authorFlorian Dold <florian.dold@gmail.com>2016-01-24 02:29:13 +0100
committerFlorian Dold <florian.dold@gmail.com>2016-01-24 02:29:13 +0100
commitb8627813be56e04c18baf38885f3a3dc0fb7496c (patch)
treee2db304d381cc343021a8af8c94b58e3554fbcc5 /extension/popup/balance-overview.html
parent1a0a302ad9bfd49ff452bf874e04b7623e23cb5f (diff)
downloadwallet-core-b8627813be56e04c18baf38885f3a3dc0fb7496c.tar.xz
Replace handlebars with mithril, hooks for i18n.
The wallet is now a single page application.
Diffstat (limited to 'extension/popup/balance-overview.html')
-rw-r--r--extension/popup/balance-overview.html34
1 files changed, 0 insertions, 34 deletions
diff --git a/extension/popup/balance-overview.html b/extension/popup/balance-overview.html
deleted file mode 100644
index b27a9353a..000000000
--- a/extension/popup/balance-overview.html
+++ /dev/null
@@ -1,34 +0,0 @@
-<!DOCTYPE html>
-
-<html>
-<head>
- <meta charset="utf-8">
- <link rel="stylesheet" href="popup.css" type="text/css">
- <script src="../lib/vendor/handlebars-v4.0.5.js" type="text/javascript"></script>
- <script src="../lib/commonHelpers.js" type="text/javascript"></script>
- <script src="balance-overview.js" type="text/javascript"></script>
-
- <script id="balance-template" type="text/x-handlebars-template">
- {{#each this}}
- <p>{{prettyAmountNoCurrency this}} <a>{{@key}}</a></p>
- {{else}}
- <p>Looks like your wallet is empty. Want to get some
- <a id="link-kudos" href="http://bank.demo.taler.net">KUDOS?</a>
- {{/each}}
- </script>
-
-</head>
-<body>
-<div id="header" class="nav">
- <a href="balance-overview.html" class="active">Wallet</a>
- <a href="history.html">History</a>
- <a href="reserves.html">Reserves</a>
- <button id="debug">Debug!</button>
- <button id="reset">Reset!</button>
-</div>
-
-<div id="content">
-</div>
-
-</body>
-</html>