-
Notifications
You must be signed in to change notification settings - Fork 17
/
popup.html
35 lines (32 loc) · 1.12 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
<!DOCTYPE html>
<meta charset="utf-8">
<link rel="stylesheet" href="popup.css">
<div id="config-pane" hidden>
<strong>Welcome to Transmitter!</strong><br>
The server address is not set yet.<br>
<a href="#" class="config-opener">Open the settings</a> to continue.
</div>
<div id="torrents-pane" hidden>
<header>
<h1>Transmitter</h1>
<a href="#" class="webui-opener" target="_blank"><img src="icon.svg" alt="Open Web UI"></a>
<a href="#" class="config-opener"><img src="gear.svg" alt="Settings"></a>
<a href="https://github.com/valpackett/transmitter" class="info-opener" target="_blank"><img src="info.svg" alt="Extension Info"></a>
</header>
<input type="search" id="torrents-search" placeholder="Search…">
<template id="torrents-tpl">
<li>
<div class="torrent-head">
<div class="torrent-name"></div>
<div class="torrent-speeds"></div>
</div>
<progress max="100" class="torrent-progress"></progress>
</li>
</template>
<ul id="torrents-list">
</ul>
<div id="torrents-error"></div>
</div>
<script src="browser-polyfill.min.js"></script>
<script src="common.js"></script>
<script src="popup.js"></script>