Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
dbirman committed Feb 8, 2024
2 parents 2101bf3 + 5783ee0 commit cda3413
Showing 1 changed file with 11 additions and 3 deletions.
14 changes: 11 additions & 3 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@

.right-col-top-row {
flex: 0 0 20%; /* 20% height, does not grow or shrink */
max-width: 20vw;
}

.right-col-bot-row {
Expand All @@ -81,13 +82,20 @@
height: 100%;
}

#pngImage, #probeImage {
#probeImage {
height: 100%;
max-height: 100vh;
}

#pngImage {
width: 100%;
max-width: 20vw;
max-height: 20vh;
}

#gifImage {
height: 100%;
max-height: 80vh;
}

#dataTable {
Expand Down Expand Up @@ -522,8 +530,8 @@
}

// Change the image lement sources
document.getElementById('gifImage').src = `images/gif/neuron${idx}.gif`;
document.getElementById('pngImage').src = `images/png/neuron${idx}.png`;
document.getElementById('gifImage').src = `https://data.virtualbrainlab.org/NPUltra/gif/neuron${idx}.gif`;
document.getElementById('pngImage').src = `https://data.virtualbrainlab.org/NPUltra/png/neuron${idx}.png`;
}

////////////////////////////////
Expand Down

0 comments on commit cda3413

Please sign in to comment.