-
Notifications
You must be signed in to change notification settings - Fork 0
/
testCollectionEditor.html
43 lines (38 loc) · 1.51 KB
/
testCollectionEditor.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>Collection Editor</title>
<style type="text/css">
@import "http://ajax.googleapis.com/ajax/libs/dojo/1.4.1/dojo/resources/dojo.css";
@import "http://ajax.googleapis.com/ajax/libs/dojo/1.4.1/dijit/themes/tundra/tundra.css";
@import "http://ajax.googleapis.com/ajax/libs/dojo/1.4.1/dojox/grid/resources/Grid.css";
@import "http://ajax.googleapis.com/ajax/libs/dojo/1.4.1/dojox/grid/resources/tundraGrid.css";
@import "FormGenerator.css";
#grid {
width: 400px;
height: 200px;
border: 1px solid black;
}
</style>
<script type="text/javascript">
var djConfig = {
isDebug: false,
parseOnLoad: true,
baseUrl: './',
// map local widget namespaces -> paths relative to baseUrl
modulePaths: {'unc' : '.'}
};
</script>
<script type="text/javascript"
src="http://ajax.googleapis.com/ajax/libs/dojo/1.4.1/dojo/dojo.xd.js"></script>
<script type="text/javascript" src="debug.js"></script>
<script type="text/javascript" src="SpellBinderSchema.js"></script>
<script type="text/javascript" src="WordBuilderSchema.js"></script>
<script type="text/javascript" src="SpellBinderData.js"></script>
<script type="text/javascript" src="WordBuilderData.js"></script>
<script type="text/javascript" src="testCollectionEditor.js"></script>
</head>
<body class="tundra">
</body>
</html>