-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
31 lines (29 loc) · 876 Bytes
/
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
<!DOCTYPE html>
<html lang="en" manifest="cache.appcache">
<head>
<meta charset="utf-8" />
<title>StartPage.js</title>
<!--[ begin Stylesheets ]-->
<link href='https://fonts.googleapis.com/css?family=Julius+Sans+One'
rel='stylesheet' type='text/css'>
<link rel="stylesheet" type="text/css" href="css/main.css" />
<!--[ end Stylesheets ]-->
<!--[ begin Scripts ]-->
<script src="js/lib/json2.js"></script>
<script src="js/app.js"></script>
<script>
var appCache = window.applicationCache;
appCache.addEventListener('updateReady', function () {
if (appCache.status == appCache.UPDATEREADY) {
appCache.swapCache();
if (confirm("A new version of StartPage is available. Reload?") {
window.location.reload();
}
}
});
</script>
<!--[ end Scripts ]-->
</head>
<body>
</body>
</html>