aboutsummaryrefslogtreecommitdiff
path: root/extension/popup/wallet.html
diff options
context:
space:
mode:
authorFlorian Dold <florian.dold@gmail.com>2015-12-16 08:01:43 +0100
committerFlorian Dold <florian.dold@gmail.com>2015-12-16 08:01:43 +0100
commit1b295d0f1aa18ece305fdc96cc356bfc2e794934 (patch)
tree32d227edf658ba83e83008d9c20f310510b9843f /extension/popup/wallet.html
parent331547059868a0e36acf5f2efac71ecbd1a96c8c (diff)
downloadwallet-core-1b295d0f1aa18ece305fdc96cc356bfc2e794934.tar.xz
show balance
Diffstat (limited to 'extension/popup/wallet.html')
-rw-r--r--extension/popup/wallet.html51
1 files changed, 0 insertions, 51 deletions
diff --git a/extension/popup/wallet.html b/extension/popup/wallet.html
deleted file mode 100644
index d481193c6..000000000
--- a/extension/popup/wallet.html
+++ /dev/null
@@ -1,51 +0,0 @@
-<!DOCTYPE html>
-
-<html>
- <head>
- <meta charset="utf-8">
- <link rel="stylesheet" href="popup.css" type="text/css">
- <script src="../lib/util.js" type="text/javascript"></script>
- <script src="wallet.js" type="text/javascript"></script>
- </head>
-
- <body>
- <div id="header" class="nav">
- <a href="wallet.html" class="active">Wallet</a>
- <a href="transactions.html">Transactions</a>
- <a href="reserves.html">Reserves</a>
- <button id="debug">Debug!</button>
- </div>
-
- <div id="content">
- <table id="wallet-table" class="hidden">
- <thead>
- <tr>
- <th colspan="2">Amount</th>
- <th>Show</th>
- </tr>
- </thead>
- <tbody>
- <!--
- <tr>
- <td class="amount">42</td>
- <td class="currency">EUR</td>
- <td class="select"><input type="checkbox" /></td>
- </tr>
- <tr>
- <td class="amount">23</td>
- <td class="currency">USD</td>
- <td class="select"><input type="checkbox" /></td>
- </tr>
- <tr>
- <td class="amount">1337</td>
- <td class="currency">KUD</td>
- <td class="select"><input type="checkbox" /></td>
- </tr>
- -->
- </tbody>
- </table>
- <p id="wallet-empty">The wallet is empty.</p>
- </div>
-
- </body>
-</html>