HRConvert2/Resources/HRC2-Functions.js
zelon88 adafced90b
v0.8.2 - Update GUI, Fix bugs, prep for uploading.
-v0.8.2.
-Update GUI to properly show more info.
-Update CSS to properly display buttons.
-Tweak logic.
-Preparing for uploading files.
2018-02-25 01:06:32 -05:00

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(); }