Marthee commited on
Commit
705436f
·
verified ·
1 Parent(s): ac13831

Update templates/proposed-GUI.html

Browse files
Files changed (1) hide show
  1. templates/proposed-GUI.html +4 -4
templates/proposed-GUI.html CHANGED
@@ -804,10 +804,8 @@ var ratioPunit=1;
804
  // console.log(measSelect)
805
 
806
  relvSelect.innerHTML='';
807
- for (i = 0; i < docsToMeasure.length; i++) {
808
-
809
-
810
- //relevant documents
811
  var optn1 = document.createElement("OPTION");
812
  optn1.text= relvDocs[i][0];
813
  optn1.value= relvDocs[i][0] ;
@@ -818,6 +816,8 @@ var ratioPunit=1;
818
  optn1.style.cursor='not-allowed';
819
  optn1.setAttribute('disabled',true);
820
  }
 
 
821
  //to measure documents
822
  var optn2 = document.createElement("OPTION");
823
 
 
804
  // console.log(measSelect)
805
 
806
  relvSelect.innerHTML='';
807
+ for (i = 0; i < relvDocs.length; i++) {
808
+ //relevant documents
 
 
809
  var optn1 = document.createElement("OPTION");
810
  optn1.text= relvDocs[i][0];
811
  optn1.value= relvDocs[i][0] ;
 
816
  optn1.style.cursor='not-allowed';
817
  optn1.setAttribute('disabled',true);
818
  }
819
+ }
820
+ for (i = 0; i < docsToMeasure.length; i++) {
821
  //to measure documents
822
  var optn2 = document.createElement("OPTION");
823