
-v0.8.2. -Update GUI to properly show more info. -Update CSS to properly display buttons. -Tweak logic. -Preparing for uploading files.
13 lines
401 B
JavaScript
13 lines
401 B
JavaScript
// / The following code toggles the visisbility of the selected object between block and none.
|
|
function toggle_visibility(id) {
|
|
var e = document.getElementById(id);
|
|
if(e.style.display == 'none')
|
|
e.style.display = 'block';
|
|
else
|
|
e.style.display = 'none'; }
|
|
|
|
// / The following code gives a nice onclick function for making a back button.
|
|
function goBack() {
|
|
window.history.back(); }
|
|
|
|
|