-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathtest.html
65 lines (60 loc) · 1.64 KB
/
test.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
<!DOCTYPE html5>
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
<title>Aria Tester</title>
<style>
html {
overflow : hidden;
}
body {
margin : 0px;
background-color : #FAFAFA;
font-family: tahoma,arial,helvetica,sans-serif;
font-size: 11px;
}
</style>
<script type="text/javascript">
var ariaRootFolder = "lib/";
var version = "1.1-24";
// Aria Templates framework parameters
var Aria = {
memCheckMode : false, // checks that constructors and destructors are well called on all objects
debug : true
};
document.write('<scr' + 'ipt type="text/javascript" src="'+ariaRootFolder+'aria/aria-templates-' + version);document.write('.js"></scri' + 'pt>');
document.write('<scr' + 'ipt type="text/javascript" src="'+ariaRootFolder+'css/atdefskin-' + version);document.write('.js"></scri' + 'pt>');
</script>
</head>
<body >
<div id="root"></div>
<script type="text/javascript">
aria.core.DownloadMgr.updateRootMap({
"aria": {
"*" : "lib/"
},
"*" : ""
});
aria.core.AppEnvironment.setEnvironment({
contextualMenu:{enabled:true} // to get the right-click refresh menu
}, null, true);
var classpath = "aria.tester.runner.view.main.Main";
var width = {min : 180};
var height = {min : 342};
// set the minimum dimension of this page
Aria.setRootDim({
width: width,
height: height
});
Aria.loadTemplate({
classpath:classpath,
div:"root",
width: width,
height: height,
moduleCtrl: {
classpath: 'aria.tester.runner.ModuleController'
}
});
</script>
</body>
</html>