-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
48 lines (32 loc) · 1.56 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
46
47
48
<!DOCTYPE html>
<html lang="en" ng-app="Electron-sample-app">
<head>
<title>Electron-sample-app</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="style.css">
</head>
<body>
Electron App is running.
<script src="jquery-3.1.1.min.js"></script>
<script>
window.jQuery = window.$ = module.exports
</script>
<!-- <script>
window.jQuery = window.$ = require('./jquery-migrate-1.4.1.min.js');
</script> -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<!-- <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script> -->
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/angularjs/1.5.6/angular.min.js"></script>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/angular-ui-router/0.3.1/angular-ui-router.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/ngStorage/0.3.6/ngStorage.min.js"></script>
<script src="https://unpkg.com/axios/dist/axios.min.js"></script>
<script src="config.js"></script>
<!-- <script src="service.js"></script> -->
<script src="loginController.js"></script>
<script src="folderLocationController.js"></script>
<script src="dashboardController.js"></script>
</body>
</html>