-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
32 lines (32 loc) · 1.17 KB
/
index.html
File metadata and controls
32 lines (32 loc) · 1.17 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 lang="ru">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Loading...</title>
<link id="icon" rel="icon" href="">
<link rel="stylesheet" href="styles.css">
<script src="utils.js?1"></script>
<script src="storage.js?4"></script>
<script src="app.core.js?1"></script>
</head>
<body>
<div id="app-ui">
<div class="window updateRequest" style="display:none">
<h3>Вышло обновление для «<a class="name">$APP</a>»</h3>
<span class="versions"><a style="color:#a66c00">$VERSION_OLD</a> ➔ <a style="color:#0066a4">$VERSION_NEW</a></span>
<p>$DESCRIPTION</p>
<hr/>
<div style="text-align:center">
<button onclick="App.ui.window.close();App.skipUpdate()">Пропустить</button>
<button onclick="App.install(App.DEFAULT_MANIFEST,true)">Обновить</button>
</div>
</div>
<div class="loadScreen">
<img alt="logo">
<h1>Loading...</h1>
<progress></progress>
</div>
</div>
</body>
</html>