-
Notifications
You must be signed in to change notification settings - Fork 6
/
CAMCore.html
31 lines (22 loc) · 877 Bytes
/
CAMCore.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
<html>
<head>
<title>CAMCore</title>
<link rel="stylesheet" type="text/css" href="css/CAM6.css">
<script type="text/javascript" src="jquery-pie/jquery-ui/jquery-1.10.2.js"></script>
<script type="text/javascript" src="jquery-pie/jquery-ui/ui/jquery.ui.core.js"></script>
<script type="text/javascript" src="jquery-pie/jquery-ui/ui/jquery.ui.widget.js"></script>
<script type="text/javascript" src="jquery-pie/jquery-ui/ui/jquery.ui.mouse.js"></script>
<script type="text/javascript" src="jquery-mousewheel/jquery.mousewheel.js"></script>
<script type="text/javascript" src="javascript/CAMCore.js"></script>
<script>
$(function() {
window.camCore = new CAMCore({
});
window.camCore.paused = false;
window.camCore.startup();
});
</script>
</head>
<body>
</body>
</html>