aboutsummaryrefslogtreecommitdiff
path: root/public/js/Popup.js
blob: 37c0c4633b33a33a431534962e44580197f4f7cc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/* 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";
}