-
Notifications
You must be signed in to change notification settings - Fork 0
/
flowchartPopup.php
69 lines (66 loc) · 2.32 KB
/
flowchartPopup.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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
<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>label</td><td>
<input id="node-label" value="new value" />
</td>
</tr>
<tr>
<td>Node type</td><td>
<select id="node-type">
<option value="Start">Start</option>
<option value="Narrative">Narrative</option>
<option value="Goal">Goal</option>
<option value="Choice">Choice</option>
<option value="Good Ending">Good Ending</option>
<option value="Bad Ending">Bad Ending</option>
</select>
</td>
</tr>
<tr>
<td>Narrative Phase</td><td>
<select id="narrative-phase">
<option value="Exposition">Exposition</option>
<option value="Rising Action">Rising Action</option>
<option value="Climax">Climax</option>
<option value="Falling Action">Falling Action</option>
<option value="Conclusion">Conclusion</option>
</select>
</td>
</tr>
<tr>
<td>Other Info:</td>
<td>
<textarea id="node-info" style="resize: none" cols="20" rows="2" value="" /></textarea>
</td>
</tr>
<tr><td>Fixed Node:</td><td><input type="checkbox" id="nodeFix" checked><br></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" disabled="true" value="new value"/>
</td>
</tr>
<tr>
<td>label</td><td>
<input id="edge-label" value="" />
</td>
</tr>
</table>
<input type="button" value="save" id="edgeSaveButton" />
<input type="button" value="cancel" id="edgeCancelButton" />
</div>