-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathpopup.html
executable file
·58 lines (48 loc) · 1.14 KB
/
popup.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
<html>
<head>
<style>
div {
overflow:auto;
width:315px;
max-height:500px;
}
</style>
<link rel="stylesheet" type="text/css" href="css/table.css" />
</head>
<body>
<div>
<table id="tab" cellpadding="1" cellspacing="0" border="1">
<tr id="settings">
<th class="d" colspan="5">
</th>
</tr>
<tr id="settings">
<th class="d">
<a href="options.html" id="hrOptions"><img src="img/options.png" alt="See options"/></a>
</th>
<th class="d" colspan="4">
<span id="tradingStatus"></span>
</th>
</tr>
<tr id="nobalan">
<td class="err" colspan="5">
Problem accessing MtGox account.<br>
Some <a href="chart.html" target="_blank">chart</a>.
Go check the <a href="options.html" target="_blank">Options page</a>.
</td>
</tr>
<tr id="balance">
<td class="c">
<a href="chart.html" id="hrRefresh"><img src="img/chart.png" alt="See chart"/></a>
</td>
<td class="c" colspan="4">
Balance = <span id="btc">0.00</span> BTC + <span id="usd">0.00</span>
</td width=20>
</tr>
<tr><th>Hour<th>Price<th colspan="3">EMA(<span id="emas">a</span>) / EMA(<span id="emal">b</span>)
</table>
</table>
</div>
<script src="popup.js"></script>
</body>
</html>