summaryrefslogtreecommitdiffstats
path: root/templates/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'templates/index.html')
-rw-r--r--templates/index.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/templates/index.html b/templates/index.html
index 1752e61..07bbb5c 100644
--- a/templates/index.html
+++ b/templates/index.html
@@ -69,8 +69,8 @@
<script type="text/javascript" src="{{ get_url(path="themes.js") | safe }}"></script>
<script>
- function burger() {
- var x = document.getElementById("bger");
+ function burger(id) {
+ var x = document.getElementById(id);
if (x.style.display === "block") {
x.style.display = "none";
} else {