-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpopup.html
More file actions
32 lines (32 loc) · 1.24 KB
/
Copy pathpopup.html
File metadata and controls
32 lines (32 loc) · 1.24 KB
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
<!doctype html>
<html>
<head>
<title>Programming News</title>
<link href="popup.css" type="text/css" rel="stylesheet" />
<script src="jquery.min.js" type="text/javascript"></script>
</head>
<body>
<div class="tab-row">
<img id="hacker-news-logo" src="images/hackernewsicon.png" alt="HN" class="tab-img">
<img id="reddit-logo" src="images/redditnewsicon.png" alt="RDT" class="tab-img">
<span id="tab-title">Hacker News</span>
<span class="tab-row-right">
<img id="reload-icon" src="images/reloadicon.png" alt="RLD" class="tab-right-img">
<img id="reading-list-logo" src="images/listicon.png" alt="DSK" class="tab-right-img">
</span>
</div>
<ul id="hacker-news-column" class="link-list"></ul>
<ul id="reddit-column" class="link-list"></ul>
<ul id="bookmarks-column" class="link-list"></ul>
<div id="messagebox">Loading...</div>
<div id="okbox">
<div>Do you want to delete all items in your reading list? </div>
<div id="okbox-buttons">
<div id="okbox-cancel">Cancel</div>
<div id="okbox-delete-all">Delete All</div>
</div>
</div>
<div id="cursor-popup"></div>
<script src="popup.js" type="text/javascript"></script>
</body>
</html>