-
Notifications
You must be signed in to change notification settings - Fork 2
/
luis.html
73 lines (67 loc) · 1.67 KB
/
luis.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
65
66
67
68
69
70
71
72
73
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<link rel="stylesheet" href="./web/bootstrap.min.css" />
<style>
html {
-ms-touch-action: manipulation;
touch-action: manipulation;
}
body {
background-color: #f8f9fa !important;
}
#logo {
height: 40px;
display: block;
margin-left: auto;
margin-right: auto;
width: 50%;
width: auto;
margin-top: 3px;
}
.nav {
flex-wrap: nowrap !important;
}
@media (max-width: 991.98px) {
.bd-navbar .navbar-nav-scroll {
max-width: 100%;
height: 2.5rem;
margin-top: .25rem;
overflow: hidden
}
.bd-navbar .navbar-nav-scroll .navbar-nav {
padding-bottom: 2rem;
overflow-x: auto;
white-space: nowrap;
-webkit-overflow-scrolling: touch
}
.navbar-brand {
margin-right: 0 !important;
}
}
</style>
<title>Settings Configurator</title>
</head>
<body>
<div id="settings-container">
</div>
<br/>
<script src="./web/jquery-3.4.1.slim.min.js"></script>
<script src="./web/popper.min.js"></script>
<script src="./web/bootstrap.min.js"></script>
<script src="./web/jquery.mask.min.js"></script>
<script src="./web/settings.js"></script>
<script>
var sdf = `
####
`;
var settings = new Settings(sdf, $('#settings-container'));
settings.init();
setTimeout(function () {
settings.refreshSettings();
}, 500);
</script>
</body>
</html>