- Timestamp:
- Mar 26, 2009, 2:08:10 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2.11-stable/www/admin/annotationtypes/edit_annotationtype.jsp
r4669 r4854 268 268 } 269 269 %> 270 add UsableUnits(usableUnits);270 addToUsableUnits(usableUnits); 271 271 } 272 272 } … … 282 282 } 283 283 284 function add UsableUnits(usableUnits)284 function addToUsableUnits(usableUnits) 285 285 { 286 286 var frm = document.forms['annotationType']; … … 309 309 } 310 310 } 311 function remove UsableUnits()311 function removeFromUsableUnits() 312 312 { 313 313 var frm = document.forms['annotationType']; … … 877 877 <tr> 878 878 <td> 879 <select name="usableUnits" size="5" multiple style="width: 15em;" >879 <select name="usableUnits" size="5" multiple style="width: 15em;" ondblclick="removeFromUsableUnits()"> 880 880 </select> 881 881 </td> … … 883 883 <br> 884 884 <base:button 885 onclick="add UsableUnits()"885 onclick="addToUsableUnits()" 886 886 title="<img src='../../images/move_left.gif' alt='' style='vertical-align: middle;'>" 887 887 tooltip="Enable the annotation type for the selected unit(s)" 888 888 /><p> 889 889 <base:button 890 onclick="remove UsableUnits()"890 onclick="removeFromUsableUnits()" 891 891 title="<img src='../../images/move_right.gif' alt='' style='vertical-align: middle;'>" 892 892 tooltip="Disable the annotation type for the selected unit(s)" … … 895 895 </td> 896 896 <td> 897 <select name="allUnits" size="5" multiple style="width: 15em;" >897 <select name="allUnits" size="5" multiple style="width: 15em;" ondblclick="addToUsableUnits()"> 898 898 </select> 899 899 <input type="hidden" name="removeUsableUnits" value="">
Note: See TracChangeset
for help on using the changeset viewer.