Changeset 6974
- Timestamp:
- Oct 6, 2015, 11:17:29 AM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/3.6-stable/www/common/annotations/annotate.js
r6955 r6974 468 468 { 469 469 var unit = units[unitNo]; 470 var option = new Option(unit.symbol, unit.id, selected == unit.id);470 var option = new Option(unit.symbol, unit.id, false, selected == unit.id); 471 471 option.title = unit.description; 472 472 unitList[unitList.length] = option; … … 683 683 annotate.valueOnBlur = function(event) 684 684 { 685 if (!selectedAnnotation &&selectedMultiIndex < 0) return;685 if (!selectedAnnotation || selectedMultiIndex < 0) return; 686 686 687 687 var frm = document.forms['annotations'];
Note: See TracChangeset
for help on using the changeset viewer.