19 lines
590 B
HTML
19 lines
590 B
HTML
<html>
|
|
<head>
|
|
<script type="text/javascript" src="jquery-1.2.3.min.js"></script>
|
|
<script type="text/javascript" src="weave.js"></script>
|
|
</head>
|
|
<body>
|
|
<form id="node-form">
|
|
<select id="nodes">
|
|
<option value="new">New</option>
|
|
</select>
|
|
<div id="node-content" style="display: none;"></div>
|
|
<div id="edit-wrapper">
|
|
<textarea id="node-content-edit"></textarea>
|
|
<button id='node-submit'>Save Node</button>
|
|
</div>
|
|
</form>
|
|
</body>
|
|
</html>
|