This repository has been archived by the owner on Sep 26, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwindow.html
45 lines (45 loc) · 1.92 KB
/
window.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
43
44
45
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="initial-scale=1.0, user-scalable=no">
<meta charset="utf-8">
<link rel="stylesheet" type="text/css" href="css/style.css" />
<script src="js/jquery.min.js"></script>
<script src="js/controllers/loaderController.js"></script>
<script src="js/menu.js"></script>
<script src="js/webview.js"></script>
</head>
<body>
<header id="header">
<a id="pause">Pause</a>
<a id="reglages">Réglages</a>
</header>
<div id="background_bubble" class="background"></div>
<div id="bubble_parametres" class="bubble">
<p>Accedez aux paramètres de l'application en cliquant sur la flèche.</p>
</div>
<div id="background_pannel_reglages" class="background"></div>
<div id="pannel_reglages">
<span class="close icon">Fermer</span>
<h2>Réglages de l'application</h2>
<fieldset>
<input type="checkbox" id="defilement_automatique" class="floatLeft reglage" />
<label for="defilement_automatique" class="floatLeft">Chargement des nouveaux tweets automatique</label>
<div class="clearFix"></div>
<input type="checkbox" id="remontee_automatique" class="floatLeft reglage" />
<label for="remontee_automatique" class="floatLeft">Remonter automatiquement le flux</label>
<div class="clearFix"></div>
<input type="checkbox" id="affichage_notifications" class="floatLeft reglage" />
<label for="affichage_notifications" class="floatLeft">Activer les notifications</label>
<div class="clearFix"></div>
<input type="submit" id="enregistrement_reglages" class="bouton" />
</fieldset>
</div>
<div id="conteneur_webview">
<span id="open_menu">Ouvrir</span>
<webview partition="persist:twitter.erwan.co" id="webview">
</div>
<script src="js/google-analytics-bundle.js"></script>
<script src="js/analytics.js"></script>
</body>
</html>