forked from vihari/Seaview
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathscatter.html
More file actions
executable file
·33 lines (31 loc) · 1.1 KB
/
scatter.html
File metadata and controls
executable file
·33 lines (31 loc) · 1.1 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Scatter Plot</title>
<script type="text/javascript"
src="d3/d3.v3.min.js"></script>
<script type="text/javascript" src="SEAVIEW/info.js"></script>
<script type="text/javascript" src="SEAVIEW/run.logs.js"></script>
<script type="text/javascript" src="SEAVIEW/unit_names.js"></script>
<script type="text/javascript" src="jquery/jquery-1.6.2.min.js"></script>
<script type="text/javascript" src="js/jquery.tipsy.js"></script>
</head>
<body>
<div id="plot">
</div>
</body>
<link href="style/tipsy.css" rel="stylesheet" type="text/css" />
<svg>
<line fill="black" x1="50" x2="177.49790075416365" y1="159.73675836837356" y2="177.48019444797754"></line>
</svg>
<script type="text/javascript" src="js/scatter_plot.js"></script>
<script>
if (window.addEventListener) {
//window.addEventListener("storage", handle_storage, false);
window.addEventListener("storage",handle_storage,false);
} else {
window.attachEvent("onstorage", handle_storage);
};
</script>
</html>