-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·35 lines (33 loc) · 1.05 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Topography Scanner</title>
<script type="text/javascript">
mxBasePath = 'javascript/mxgraph';
</script>
<script type="text/javascript" src="javascript/mxgraph/mxClient.js"></script>
<script src="javascript/jquery.js" charset="utf-8"></script>
<script charset="utf-8">
var xml = null;
$.ajax({
type: "GET",
url: "out.xml",
dataType: "xml",
success: function (loaded_xml) {
xml = loaded_xml;
},
error: function(){
alert("Unable to load XML")
}
});
</script>
<script type="text/javascript" src="javascript/src/index.js"></script>
</head>
<body onload="main(document.getElementById('graphContainer'))">
<!-- Creates a container for the graph with a grid wallpaper -->
<div id="graphContainer"
style="position:relative;overflow:hidden;width:100%;height:100%;background:url('editors/images/grid.gif');cursor:default;">
</div>
</body>
</html>