Skip to content

Commit

Permalink
last column name fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ivp08001 committed Dec 17, 2015
2 parents db3de2d + a145541 commit 213d966
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions VQI_PathwayEditor.js
Original file line number Diff line number Diff line change
Expand Up @@ -1201,13 +1201,14 @@ var VQI_PathwayEditor = function (parent) {

if (n == 0) {
path.innerHTML = "<i><h3>paths</h3></i>";
score.innerHTML = "<i><h3>scores</h3></i>";
consistency.innerHTML = "<i><h3>consistency</h3></i>";
score.innerHTML = "<i><h3>R</h3></i>";
consistency.innerHTML = "<i><h3>consistent</h3></i>";
consLowP.innerHTML = "<i><h3>cons+low P</h3></i>";
rfdr.innerHTML = "<i><h3>rfdr</h3></i>"
mfdr.innerHTML = "<i><h3>mfdr</h3></i>"
mrfdr.innerHTML = "<i><h3>mrfdr</h3></i>"
m.innerHTML = "<i><h3>m</h3></i>"

rfdr.innerHTML = "<i><h3>FDR(R)</h3></i>"
mfdr.innerHTML = "<i><h3>FDR(M)</h3></i>"
mrfdr.innerHTML = "<i><h3>FDR(M+R)</h3></i>"
m.innerHTML = "<i><h3>M</h3></i>"
} else {
var btn = document.createElement("button");
var t = document.createTextNode((n - 1).toString());
Expand Down

0 comments on commit 213d966

Please sign in to comment.