-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathedlink.html
More file actions
31 lines (23 loc) · 694 Bytes
/
edlink.html
File metadata and controls
31 lines (23 loc) · 694 Bytes
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
<html>
<head>
<title>Edit Link</title>
<script src="sti_utils.js"></script>
<script src="edlink.js"></script>
</head>
<body onload="init();">
<h1>Edit Link</h1>
<form onsubmit="return false;" name="form">
<table id="edit">
<tr><th>Link</th><th>Text</th><th></th></tr>
</table>
<p>
<input type="button" value="Close" onclick="window.close();" >
</form>
<p>
Use this form to add edit or remove links from the assembly tree. To add a
link, enter the URL and optional text in the empty row, and click the +
button. To remove a link, click the "X" button to the right of the link. To
edit a link or its text, simply edit the field. Use the "Close" to dismiss this
popup.
</body>
</html>