-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
executable file
·53 lines (45 loc) · 1.79 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
49
50
51
52
53
<!doctype html>
<head>
<title>Dashboard</title>
<meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate" />
<meta http-equiv="Pragma" content="no-cache" />
<meta http-equiv="Expires" content="0" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.0.0-alpha.4/css/bootstrap.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.5.0/css/font-awesome.min.css">
<link rel="stylesheet" href="dist/style.css?v=1648017307">
<link rel="shortcut icon" href="./favicon.ico" type="image/x-icon">
</head>
<body>
<div class="loader"></div>
</body>
<script src="node_modules/mithril/mithril.min.js"></script>
<script src="bower_components/promise-polyfill/promise.min.js"></script>
<script src="bower_components/fetch/fetch.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jshint/2.9.7/jshint.min.js" integrity="sha256-+6jKy3+VWioENBgtl4sULx4RnF+UKdrVJFb+mgWM0/4=" crossorigin="anonymous"></script>
<script src="bower_components/pikaday/pikaday.js"></script>
<script src="bower_components/requirejs/require.js"></script>
<script>
require.config({
baseUrl: '/implicit/common/all/js/quest/0.0/',
paths: {
underscore: 'bower_components/lodash-compat/lodash.min',
jquery: ["//cdnjs.cloudflare.com/ajax/libs/jquery/1.11.2/jquery.min","bower_components/jquery/dist/jquery.min"],
ace: '//cdnjs.cloudflare.com/ajax/libs/ace/1.2.2/'
},
map: {
'*': {
pipAPI: 'src/js/APIs/PIpipAPI',
questAPI: 'src/js/APIs/PIquestAPI',
managerAPI: 'src/js/APIs/PImanagerAPI'
}
},
packages:[
{
name: 'pipScorer',
location: '/implicit/common/all/js/pip/0.3/dist/js/extensions/dscore',
main: 'Scorer'
}
]
})
</script>
<script src="dist/main.js?v=1648017307"></script>