aboutsummaryrefslogtreecommitdiff
path: root/petrichor.js
diff options
context:
space:
mode:
Diffstat (limited to 'petrichor.js')
-rw-r--r--petrichor.js10
1 files changed, 10 insertions, 0 deletions
diff --git a/petrichor.js b/petrichor.js
index b5e06ed..fa4a100 100644
--- a/petrichor.js
+++ b/petrichor.js
@@ -2,6 +2,16 @@ password_prompt = false;
selected_user = null;
time_remaining = 0
+function show_element(id)
+{
+ document.getElementById(id).classList.add("shown");
+}
+
+function hide_element(id)
+{
+ document.getElementById(id).classList.remove("shown");
+}
+
function show_prompt(text, type)
{
password_prompt = true;