aboutsummaryrefslogtreecommitdiff
path: root/public/js/Popup.js
diff options
context:
space:
mode:
Diffstat (limited to 'public/js/Popup.js')
-rw-r--r--public/js/Popup.js19
1 files changed, 0 insertions, 19 deletions
diff --git a/public/js/Popup.js b/public/js/Popup.js
deleted file mode 100644
index 37c0c46..0000000
--- a/public/js/Popup.js
+++ /dev/null
@@ -1,19 +0,0 @@
-/* popup window overlay functions */
-
-window.showFaq = function showFaq() {
- document.getElementById("overlay-faq").style.display = "block";
-}
-
-window.showDemo = function showDemo() {
- document.getElementById("overlay-demo").style.display = "block";
-}
-
-window.showProjects = function showProjects() {
- document.getElementById("overlay-projects").style.display = "block";
-}
-
-window.hide = function hide() {
- document.getElementById("overlay-faq").style.display = "none";
- document.getElementById("overlay-demo").style.display = "none";
- document.getElementById("overlay-projects").style.display = "none";
-}