forked from cmap/morpheus.js
-
Notifications
You must be signed in to change notification settings - Fork 4
/
index.html
51 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
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport"
content="user-scalable=no, width=device-width, initial-scale=1, maximum-scale=1">
<meta name="google-site-verification"
content="7UY7VcXR28Tpmw6m6fc6wtJJQvar71GKqGojp3HPb4Q"/>
<title>phantasus</title>
<link rel="stylesheet" href="css/phantasus-latest.min.css">
<script type="text/javascript" src="RELEASE.js"></script>
<script type="text/javascript" src="js/phantasus-external-other.min.js"></script>
<script type="text/javascript" src="js/phantasus-external-pdfkit-xlsx.min.js"></script>
<script type="text/javascript" src="js/phantasus-external-plotly.min.js"></script>
<script type="text/javascript"
src="https://apis.google.com/js/api.js"></script>
<script src="js/phantasus.js"></script>
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon">
</head>
<body>
<noscript>
<p>Please enable JavaScript</p>
</noscript>
<div id="vis"></div>
<script type="text/javascript">
console.log(PHANTASUS_VERSION,'-',PHANTASUS_BUILD);
loc = window.location.pathname;
loc = loc.substr(0, loc.lastIndexOf("/") + 1);
window.libraryPrefix = loc;
phantasus.Util.setLibrary('phantasus');
phantasus.Util.loadTrackingCode();
window.onerror = function () {
var errorObj = _.last(arguments);
var errorMsg = _.size(errorObj.message) ? errorObj.message : 'Oops, something went wrong. Please try again.';
phantasus.FormBuilder.showInModal({
title: 'Error',
html: '<div class="error-msg">' + errorMsg + '</div>'
});
};
phantasus.Util.browserCheck();
var landingPage = new phantasus.LandingPage();
</script>
</body>
</html>