aboutsummaryrefslogtreecommitdiff
path: root/extension/popup/transactions.html
diff options
context:
space:
mode:
authorFlorian Dold <florian.dold@gmail.com>2016-01-06 15:39:22 +0100
committerFlorian Dold <florian.dold@gmail.com>2016-01-06 15:39:22 +0100
commitabf15268acafe588191fffb7ca6ddb963244bb0f (patch)
tree0f582386d09eccd550c414e62337a7f630b2ddb1 /extension/popup/transactions.html
parent2f8aa00595ab40292019ca739041296c84703899 (diff)
Refactor wallet into logic and extension interface.
Diffstat (limited to 'extension/popup/transactions.html')
-rw-r--r--extension/popup/transactions.html62
1 files changed, 0 insertions, 62 deletions
diff --git a/extension/popup/transactions.html b/extension/popup/transactions.html
deleted file mode 100644
index e575f0227..000000000
--- a/extension/popup/transactions.html
+++ /dev/null
@@ -1,62 +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="transactions.js" type="text/javascript"></script>
-
- <script id="balance-template" type="text/x-handlebars-template">
- {{#each transactions}}
- bla
- {{else}}
- Looks like you didn't make any transactions. Get some
- coins and <a>donate</a> something.
- {{/each}}
- </script>
-
-</head>
-
-<body>
-<div id="header" class="nav">
- <a href="balance-overview.html">Wallet</a>
- <a href="transactions.html" class="active">Transactions</a>
- <a href="reserves.html">Reserves</a>
-</div>
-
-<div id="content">
- <table id="transactions-table" class="hidden">
- <thead>
- <tr>
- <th>Date</th>
- <th>Amount</th>
- <th>Status</th>
- <th></th>
- </tr>
- </thead>
- <tbody>
- <!--
- <tr>
- <td class="date">2015-12-21 13:37</td>
- <td class="amount">42 EUR</td>
- <td class="status">Completed</td>
- <td class="contract"><button>Contract</button></td>
- </tr>
- <tr>
- <td class="date">2015-12-22 10:01</td>
- <td class="amount">23 USD</td>
- <td class="status">Pending</td>
- <td class="contract"><button>Contract</button></td>
- </tr>
- -->
- </tbody>
- </table>
-
- <p id="no-transactions">
- There are no transactions to show.
- </p>
-</div>
-
-</body>
-</html>