-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
42 lines (40 loc) · 2.49 KB
/
index.html
File metadata and controls
42 lines (40 loc) · 2.49 KB
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>tron_Manager</title>
<meta name="viewport" content="initial-scale=1, maximum-scale=1, user-scalable=no" />
<!--css-->
<link rel="stylesheet" href="./node_modules/bootstrap/dist/css/bootstrap.css"/>
<link rel="stylesheet" href="./node_modules/angular-material/angular-material.css"/>
<link rel="stylesheet" href="./styles/css/app.css"/>
<link rel="stylesheet" href="./node_modules/font-awesome/css/font-awesome.min.css"/>
<link rel="stylesheet" href="./node_modules/angular-material-data-table/dist/md-data-table.min.css"/>
<link rel="stylesheet" href="./node_modules/angular-material-icons/angular-material-icons.css"/>
</head>
<body ng-app='tronManager'>
<ng-view></ng-view>
<!-- electron exposes a global module when nodeIntegration: true, which jQuery then sees and reacts accordingly:
to prevent error we add this line before call -->
<script>if (typeof module === 'object') {window.module = module; module = undefined;}</script>
<!--jquery-->
<script src="./node_modules/jquery/dist/jquery.min.js" type="text/javascript"></script>
<!--angular-->
<script src="./node_modules/angular/angular.min.js" type="text/javascript"></script>
<script src="./node_modules/angular-route/angular-route.js" type="text/javascript"></script>
<script src="./node_modules/angular-animate/angular-animate.min.js" type="text/javascript"></script>
<script src="./node_modules/angular-aria/angular-aria.min.js" type="text/javascript"></script>
<script src="./node_modules/angular-material/angular-material.js" type="text/javascript"></script>
<script src="./node_modules/angular-material-data-table/dist/md-data-table.min.js" type="text/javascript"></script>
<script src="./node_modules/angular-material-icons/angular-material-icons.js" type="text/javascript"></script>
<!--bootstrap-->
<script src="node_modules/bootstrap/dist/js/bootstrap.min.js" type="text/javascript"></script>
<!-- build:app scripts/app.js -->
<script src="scripts/app.js" type="text/javascript"></script>
<script src="scripts/services.js" type="text/javascript"></script>
<script src="scripts/directive.js" type="text/javascript"></script>
<script src="scripts/controller.js" type="text/javascript"></script>
<!-- endbuild -->
<script>if (window.module) module = window.module;</script>
</body>
</html>