-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.dev.html
More file actions
67 lines (65 loc) · 2.56 KB
/
Copy pathindex.dev.html
File metadata and controls
67 lines (65 loc) · 2.56 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/jointjs/1.0.2/joint.css"/>
<link rel="stylesheet" href="/node_modules/angular-material/angular-material.min.css">
<link rel="stylesheet" href="./styles.css">
<link rel="stylesheet" href="./custom/JointTooledViewPlugin/tooledViewPlugin.css">
<link href="./node_modules/@mdi/font/css/materialdesignicons.css" rel="stylesheet">
</head>
<body ng-cloak class="body-container">
<style>
.dont-show {
display: none;
}
</style>
<base href="/"></base>
<div ng-controller="RootCtrl">
<div class="loading dont-show" ng-show="$shared.isLoading">
<center>
<md-progress-circular md-mode="indeterminate"></md-progress-circular>
<p>Please wait..</p>
</center>
</div>
<div class="isnt-loading dont-show" ng-show="!$shared.isLoading">
<div ng-show="$shared.isCreateLoading">
<div class="load-mask">
<div class="container">
<div class="mask">
<div class="block"></div>
</div>
<div class="spinner">
<center>
<md-progress-circular md-mode="indeterminate"></md-progress-circular>
<small>Please wait..</small>
</center>
</div>
</div>
</div>
</div>
<div id="scopeCtrl" ng-view></div>
</div>
</div>
<script>
// some global settings used throughout the app
var DEPLOYMENT_DOMAIN = 'CONFIGURED_DEPLOYMENT_DOMAIN';
</script>
<!-- dependencies -->
<script src="/node_modules/jquery/dist/jquery.min.js"></script>
<script src="/node_modules/angular/angular.js"></script>
<script>
// fix for angular sanitize version 1.4.4
angular.lowercase = angular.$$lowercase;
</script>
<script src="/node_modules/angular-aria/angular-aria.js"></script>
<script src="/node_modules/angular-route/angular-route.js"></script>
<script src="/node_modules/angular-animate/angular-animate.js"></script>
<script src="/node_modules/angular-sanitize/angular-sanitize.js"></script>
<script src="/node_modules/angular-material/angular-material.js"></script>
<script src="/node_modules/lodash/lodash.min.js"></script>
<script src="/node_modules/backbone/backbone-min.js"></script>
<script src="/node_modules/jointjs/dist/joint.js"></script>
<script src="/node_modules/urijs/src/URI.min.js"></script>
<script src="./app/scripts/main.js"></script>
</body>
</html>