forked from UNC-Libraries/jquery.xmleditor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
44 lines (44 loc) · 1.29 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
36
37
38
39
40
41
42
43
44
<!doctype html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>jQuery.xmleditor</title>
<link rel="stylesheet" href="demo/stylesheets/reset.css" type="text/css" />
<link rel="stylesheet" href="demo/stylesheets/demo.css" type="text/css" />
<link rel="stylesheet" href="css/jquery.xmleditor.css" type="text/css" />
<script src="lib/ace/src-min/ace.js"></script>
<script src="lib/jquery.min.js"></script>
<script src="lib/jquery-ui.min.js"></script>
<script src="lib/json2.js"></script>
<script src="lib/cycle.js"></script>
<script src="lib/jquery.autosize-min.js"></script>
<script src="lib/vkbeautify.js"></script>
<script src="jquery.xmleditor.js"></script>
</head>
<body>
<div class="wrapper">
<header>
<h1>jQuery.xmleditor MODS Editing Demo</h1>
<a href="https://github.com/UNC-Libraries/jquery.xmleditor">View
the Project on GitHub <small>UNC-Libraries/jquery.xmleditor</small>
</a>
</header>
</div>
<div id="xml_editor">
<mods xmlns="http://www.loc.gov/mods/v3"> </mods>
</div>
<script>
$(function() {
$("#xml_editor").xmlEditor({
schema : "demo/examples/mods.json"
});
});
</script>
<footer>
<p>
This project is maintained by <a
href="https://github.com/UNC-Libraries">UNC-Libraries</a>
</p>
</footer>
</body>
</html>