-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.de.html
64 lines (55 loc) · 1.26 KB
/
index.de.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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
<!DOCTYPE html>
<html>
<head>
<title>Benutzerhilfe</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=10.0, user-scalable=yes">
<link href="style.css" type="text/css" rel="stylesheet" />
<script type="text/javascript" src="/jquery/jquery-latest.js"></script>
<script type="text/javascript">
$(document).ready(function() {
if (document.referrer.match(/(client=iOS)/)){
$(".android").hide();
$(".apple").show();
window.history.replaceState(null, null, "?client=iOS");
}
if (window.location.href.match(/(client=iOS)/)){
$(".android").hide();
$(".apple").show();
}
});
</script>
</head>
<body class="mqtt-index">
<a href="de/prerequisites.html">
Einführung
</a>
<a href="de/setup.html">
App einrichten
</a>
<a href="de/register.html">
Auf Topics registrieren
</a>
<a href="de/filter-scripts.html">
Filterskripte für Topics
</a>
<a href="de/actions.html">
Aktionen definieren
</a>
<a href="de/notifications.html">
Benachrichtigungen
</a>
<a href="de/dashboard.html">
Dashboard
</a>
<a href="de/dashboard_scripts.html">
Dashboard-Skripte
</a>
<a href="de/security.html">
Sicherheit
</a>
<a href="de/about.html">
Über MQTT Push Client
</a>
</body>
</html>