-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathnewExp.html
46 lines (43 loc) · 1.71 KB
/
newExp.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
<!DOCTYPE html>
<html style="height:100%;">
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<title>LLG Media Player</title>
<meta name="description" content="" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" href="./styles//newExp.css">
<link href="./styles/mdb/css/addons/datatables.css" rel="stylesheet" />
<link href="./styles/mdb/css/bootstrap.css" rel="stylesheet" />
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.8.1/css/all.css"
integrity="sha384-50oBUHEmvpQ+1lW4y57PTFmhCaXp0ML5d60M1M7uH2+nqUivzIebhndOJK28anvf" crossorigin="anonymous" />
</head>
<body style="height:100%;padding: 10px;">
<table id="dtBasicExample" class="table table-striped table-bordered table-sm" cellspacing="0" width="100%">
<thead>
<tr>
<th class="th-sm">Expression</th>
<th class="th-sm">Translation</th>
<th class="th-sm">Media</th>
<th class="th-sm">PauseTime</th>
<th class="th-sm">PlayMedia</th>
</tr>
</thead>
<tbody id="dtableb"></tbody>
</table>
<script src="./scripts/vtt.js"></script>
<script src="./scripts/swal.js"></script>
<script src="./scripts/MpRenderer.js"></script>
<script type="text/javascript" src="./styles/mdb/js/jquery-3.3.1.min.js"></script>
<script type="text/javascript" src="./styles/mdb/js/jquery-3.3.1.min.js"></script>
<script type="text/javascript" src="./styles/mdb/js/addons/datatables.js"></script>
<script src="./scripts/newExpRenderer.js"></script>
<script>
var mainVar = require("electron").remote;
mainVar
.getGlobal("visitor")
.pageview("/newExp")
.send();
</script>
</body>
</html>