Bug 6184 : Plugin for 007 broken

Signed-off-by: Chris Cormack <chrisc@catalyst.net.nz>
This commit is contained in:
Chris Cormack 2011-04-20 15:49:07 +12:00
parent c3912ebf90
commit 6bc0db4e7c

View file

@ -122,7 +122,7 @@ function RedrawChoices(typ){
var divOutput=document.getElementById("choices");
switch(typ){
case "a":
divOutput.innerhtml='<table> \
divOutput.innerHTML='<table> \
<tr> \
<td>00 Category of material</td> \
<td>a- Map</td> \
@ -424,7 +424,7 @@ function RedrawChoices(typ){
</table>';
break;
case "c":
divOutput.innerhtml='<table> \
divOutput.innerHTML='<table> \
<tr> \
<td>00 Category of material</td> \
<td>c- Electronic Resource</td> \
@ -860,7 +860,7 @@ function RedrawChoices(typ){
</table>';
break;
case "d":
divOutput.innerhtml='<table> \
divOutput.innerHTML='<table> \
<tr> \
<td>00 Category of material</td> \
<td>d- Globe</td> \
@ -1038,7 +1038,7 @@ function RedrawChoices(typ){
</table>';
break;
case "f":
divOutput.innerhtml='<table> \
divOutput.innerHTML='<table> \
<tr> \
<td>00 Category of material</td> \
<td>f- Tactile Material</td> \
@ -1576,7 +1576,7 @@ function RedrawChoices(typ){
</table>';
break;
case "g":
divOutput.innerhtml='<table> \
divOutput.innerHTML='<table> \
<tr> \
<td>00 Category of material</td> \
<td>g- Projected graphic</td> \
@ -2016,7 +2016,7 @@ function RedrawChoices(typ){
</table>';
break;
case "h":
divOutput.innerhtml='<table> \
divOutput.innerHTML='<table> \
<tr> \
<td>00 Category of material</td> \
<td>h- Microform</td> \
@ -2432,7 +2432,7 @@ function RedrawChoices(typ){
</table>';
break;
case "k":
divOutput.innerhtml='<table> \
divOutput.innerHTML='<table> \
<tr> \
<td>00 Category of material</td> \
<td>k- Nonprojected graphic</td> \
@ -2775,7 +2775,7 @@ function RedrawChoices(typ){
</table>';
break;
case "m":
divOutput.innerhtml='<table> \
divOutput.innerHTML='<table> \
<tr> \
<td>00 Category of material</td> \
<td>m- Motion Picture</td> \
@ -3613,7 +3613,7 @@ function RedrawChoices(typ){
</table>';
break;
case "o":
divOutput.innerhtml='<table> \
divOutput.innerHTML='<table> \
<tr> \
<td>00 Category of material</td> \
<td>o- Kit</td> \
@ -3638,7 +3638,7 @@ function RedrawChoices(typ){
</table>';
break;
case "q":
divOutput.innerhtml='<table> \
divOutput.innerHTML='<table> \
<tr> \
<td>00 Category of material</td> \
<td>q- Notated music</td> \
@ -3663,7 +3663,7 @@ function RedrawChoices(typ){
</table>';
break;
case "r":
divOutput.innerhtml='<table> \
divOutput.innerHTML='<table> \
<tr> \
<td>00 Category of material</td> \
<td>r- Remote-sensing image</td> \
@ -4219,7 +4219,7 @@ function RedrawChoices(typ){
</table>';
break;
case "s":
divOutput.innerhtml='<table> \
divOutput.innerHTML='<table> \
<tr> \
<td>00 Category of material</td> \
<td>s- Sound recording</td> \
@ -4933,7 +4933,7 @@ function RedrawChoices(typ){
</table>';
break;
case "t":
divOutput.innerhtml='<table> \
divOutput.innerHTML='<table> \
<tr> \
<td>00 Category of material</td> \
<td>t- Text</td> \
@ -4983,7 +4983,7 @@ function RedrawChoices(typ){
</table>';
break;
case "v":
divOutput.innerhtml='<table> \
divOutput.innerHTML='<table> \
<tr> \
<td>00 Category of material</td> \
<td>v- Videorecording</td> \
@ -5402,7 +5402,7 @@ function RedrawChoices(typ){
</table>';
break;
case "z":
divOutput.innerhtml='<table> \
divOutput.innerHTML='<table> \
<tr> \
<td>00 Category of material</td> \
<td>z- Unspecified</td> \
@ -5437,7 +5437,7 @@ function RedrawChoices(typ){
</table>';
break;
default:
divOutput.innerhtml="baz";
divOutput.innerHTML="baz";
}
}
//]]>