-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
66 lines (56 loc) · 1.81 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
54
55
56
57
58
59
60
61
62
63
64
65
66
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Alix examples</title>
<link rel="stylesheet" href="styleimport/highlight/styles/default.css">
<link rel="stylesheet" href="demo/css/demoStyle.css" />
<!--link rel="stylesheet" href="styles/packedCSS/style_bundle.css" /-->
<!--link rel="stylesheet" href="https://code.jquery.com/ui/1.11.1/themes/smoothness/jquery-ui.css" /-->
<script type="text/javascript" src="jsimports/jquery-1.9.1.js" charset="utf-8"></script>
<!--
<script src="styleimport/highlight/highlight.pack.js"></script>
<script>hljs.initHighlightingOnLoad();</script>
-->
<script>var useDebugResources = true; var productionMode=false;</script>
<script type="text/javascript" src="javascript/loader.js"></script>
<script type="text/javascript" src="javascript/loader_packed.js"></script>
<script>
$.browser={ msie: ( navigator.appName == 'Microsoft Internet Explorer') ? true : false }
if( productionMode ) {
useDebugResources = false;
packedResourceLoader.setCss([
"styles/packedCSS/style_bundle.css"
,"aladinLite/aladin.css"
,"styles/aladinliteX.css"
,"styleimport/basics.css"
,"styleimport/domain.css"
]);
packedResourceLoader.setScripts([
"packager/lmpack/alix_packed/packedJSimport_alix.js"
,"packager/lmpack/alix_packed/packedJS_alix.js"
]);
packedResourceLoader.loadAll();
} else {
var useDebugResources = true;
resourceLoader.setCss([
]);
resourceLoader.setScripts([
]);
resourceLoader.loadAll();
}
</script>
<script type="text/javascript" src="demo/js/demo.js" charset="utf-8"></script>
</head>
<body>
<div id = "demo_banner">ALIX Demos</div>
<div id = "demo_body">
</div>
</body>
<script>
console.log("========================");
$.ready(function() {
console.log("========================");
//Logger.test();
});
</script></html>