-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcharacterModelpopup.php
41 lines (41 loc) · 1.14 KB
/
characterModelpopup.php
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
<div id="node-popUp">
<span id="nodeOperation">node</span>
<br>
<table style="margin:auto;">
<tr>
<td>id</td><td>
<input id="node-id" disabled="true" value="new value" />
</td>
</tr>
<tr>
<td>Character Name</td><td>
<input id="node-name" value=" " />
</td>
</tr>
<tr>
<td>Character Goals</td><td>
<input id="node-thoughts" value="" />
</td>
</tr>
</table>
<input type="button" value="save" id="nodeSaveButton" />
<input type="button" value="cancel" id="nodeCancelButton" />
</div>
<div id="edge-popUp">
<span id="edgeOperation">edge</span>
<br>
<table style="margin:auto;">
<tr>
<td>id</td><td>
<input id="edge-id"/>
</td>
</tr>
<tr>
<td>label</td><td>
<input id="edge-label" value="new value" />
</td>
</tr>
</table>
<input type="button" value="save" id="edgeSaveButton" />
<input type="button" value="cancel" id="edgeCancelButton" />
</div>