-
Notifications
You must be signed in to change notification settings - Fork 1
/
popup.html
29 lines (29 loc) · 847 Bytes
/
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
<!doctype html>
<html>
<head>
<title>Post First</title>
<link rel="stylesheet" type="text/css" href="/css/popup.css" />
</head>
<body>
<div id="checking" class="checking">
Sweeping your networks for<br />
<span class="url"> </span>
</div>
<div id="already_posted" class="hidden">
This has already been posted by
<ul class="posters">
</ul>
</div>
<div id="post" class="hidden">
You're in the clear, go ahead and share it!
</div>
<div id="error" class="error hidden">
Did I say sweeping? More like weeping.<br />
Sorry, dude, something went wrong.
</div>
<script src="/js/jquery.min.js"></script>
<script src="/js/underscore.min.js"></script>
<script src="/js/util.js"></script>
<script src="/js/popup.js"></script>
</body>
</html>