aboutsummaryrefslogtreecommitdiffstats
path: root/Web/Server/static/Server.js
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--Web/Server/static/Server.js9
1 files changed, 9 insertions, 0 deletions
diff --git a/Web/Server/static/Server.js b/Web/Server/static/Server.js
index 30274f2..129951b 100644
--- a/Web/Server/static/Server.js
+++ b/Web/Server/static/Server.js
@@ -7,4 +7,13 @@ function showLoad(){
if (div.style.display !== 'none') {
div.style.display = 'none';
}
+}
+
+function toggleAbout(){
+ var x = document.getElementById("about");
+ if (x.style.display === "none") {
+ x.style.display = "block";
+ } else {
+ x.style.display = "none";
+ }
} \ No newline at end of file