-
Notifications
You must be signed in to change notification settings - Fork 5
/
index.html
45 lines (38 loc) · 1.5 KB
/
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
<title>Untangle - MicroFW</title>
<script>
String.prototype.t = function() {
return this.valueOf();
};
</script>
<!-- Ext JS 6.6.0 -->
<script src="res/lib/ext-6.6.0/ext-modern-all-debug.js"></script>
<script src="res/lib/ext-6.6.0/theme-material/theme-material.js"></script>
<link href="res/lib/ext-6.6.0/theme-material/resources/theme-material-all.css" rel="stylesheet" type="text/css" />
<!-- Highchart lib, map -->
<!-- <script src="res/lib/highcharts-6.1.0/highstock.js"></script>
<script src="res/lib/highcharts-6.1.0/highcharts-3d.js"></script>
<script src="res/lib/highcharts-6.1.0/highcharts-more.js"></script> -->
<link href="res/mfw-all.css" rel="stylesheet" type="text/css" />
<script src="res/mfw-all.js"></script>
<script>
Ext.onReady(function () {
Ext.theme.Material.setColors({
'darkMode': true,
'base': '#333',
// 'accent': accent || me._materialAccentColor
});
Ext.application({
extend: 'Mfw.App',
namespace: 'Mfw'
});
});
</script>
</head>
<body>
</body>
</html>