-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathmodal-settings.html
More file actions
32 lines (32 loc) · 1.18 KB
/
modal-settings.html
File metadata and controls
32 lines (32 loc) · 1.18 KB
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
<table>
<tr>
<td>
<div class="field-container">
<label>Path to Node binary: <input type="text" placeholder="(leave empty for global node command)" class="node" style="width: 530px"></label>
</div>
</td>
</tr>
<tr>
<td>
<div class="field-container">
<label>Path to NPM binary: <input type="text" placeholder="(leave empty for global npm command)" class="npm" style="width: 530px"></label>
</div>
</td>
</tr>
<tr>
<td>
<div class="field-container">
<label>Flags for v8: <input type="text" placeholder="(example: --use_strict --harmony)" class="flags" style="width: 530px"></label>
</div>
</td>
</tr>
<tr>
<td>
<div class="field-container">
<label>Autoscroll in terminal: <input type="checkbox" class="autoscroll"></label>
<label>Force terminal to bottom of brackets: <input type="checkbox" class="termbottom"></label>
<label>Wrap terminal output: <input type="checkbox" class="wrap"></label>
</div>
</td>
</tr>
</table>