-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
42 lines (39 loc) · 1.15 KB
/
index.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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Web Notification Sample</title>
<link rel="stylesheet" type="text/css" href="web-notification.css">
<link rel="shortcut icon" href="icon.png">
</head>
<body>
<div>
So... you want to be <i>webnotified</i> with nice programming quotes?<br />
Click <button id="auth">here</button> to authorize and start (If you've not yet authorized), and wait for random nice quotes while you're working :) <br/><br />
</div>
<div id="status">
Status:
<span id="statusvalue" class="stopped">Stopped</span>
<button id="stop">Stop</button>
</div> <br /><br />
<div id="support">
Support for WebNotification:
<table>
<tr>
<td><img src="aurora.png" alt="Firefox Aurora"></td>
<td><img src="nightly.png" alt="Firefox Nightly"></td>
<td><img src="chrome.jpg" alt="Google Chrome"></td>
</tr>
<tr>
<td>Aurora</td>
<td>Nightly</td>
<td>Chrome</td>
</tr>
</table>
<div>
Spec: <a href="http://www.w3.org/TR/notifications/">http://www.w3.org/TR/notifications/</a>
</div>
</div>
<script type="text/javascript" src="web-notification.js"></script>
</body>
</html>