aboutsummaryrefslogtreecommitdiff
path: root/public/js/main.slim.js
diff options
context:
space:
mode:
Diffstat (limited to 'public/js/main.slim.js')
-rw-r--r--public/js/main.slim.js24
1 files changed, 0 insertions, 24 deletions
diff --git a/public/js/main.slim.js b/public/js/main.slim.js
deleted file mode 100644
index 510be2d..0000000
--- a/public/js/main.slim.js
+++ /dev/null
@@ -1,24 +0,0 @@
- /* main navigator functions */
- function openNav() {
- document.getElementById("side-navbar").style.width = "150px";
- document.getElementById("main").style.marginLeft = "-148px";
- }
-
- function closeNav() {
- document.getElementById("side-navbar").style.width = "0";
- document.getElementById("main").style.marginLeft = "0";
- }
-
- /* popup window overlay functions */
- function show() {
- document.getElementById("overlay").style.display = "block";
- }
-
- function hide() {
- document.getElementById("overlay").style.display = "none";
- }
-
- /* onload image functions */
- function fadeImage() {
- document.getElementById("bg").style.opacity = "1";
- }