-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpopup.html
36 lines (36 loc) · 1.1 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
<!DOCTYPE html>
<html>
<head>
<script src="core.js"></script>
<script src="popup.js"></script>
<link href="style.css" rel="stylesheet" type="text/css"/>
<style>
body {overflow: hidden;}
#container, #spinner {width:350px;}
</style>
</head>
<body>
<div id="spinner" style="display:none">
<img src="ajax-loader.gif">
</div>
<div id="container" class="popup-container">
<div id="header">
<img src="icon18.png">
<a id="title" href="https://news.ycombinator.com">Hacker News</a>
<span>|</span>
<a id="submitLink" href="">Submit Current Page</a>
</div>
<div id="search">
<input type="text" id="searchbox" name="searchbox" placeholder="search hacker news..." />
<input type="submit" id="searchbutton" value="search" />
</div>
<table id="feed" cellspacing="3" cellpadding="0">
</table>
<div id="footer">
<div class="right">
<a href="http://github.com/adamalbrecht/hacker-news-for-chrome/issues" id="issues">Issues?</a> | <a href="" id="refresh">Refresh</a> | <a href="#" id="options">Options</a>
</div>
</div>
</div>
</body>
</html>