From d0f9ca61a9fb7e4c6633127fddf797a2699e0140 Mon Sep 17 00:00:00 2001
From: Karl <kc0bfv@gmail.com>
Date: Sat, 15 Feb 2020 16:27:02 +0000
Subject: [PATCH] Update dropdown shortcode to use HTML details

---
 layouts/partials/head.html |    8 --------
 1 files changed, 0 insertions(+), 8 deletions(-)

diff --git a/layouts/partials/head.html b/layouts/partials/head.html
index 75ceab9..9583807 100644
--- a/layouts/partials/head.html
+++ b/layouts/partials/head.html
@@ -45,14 +45,6 @@
 </noscript>
 
 <script>
-    function toggleDisplay( elementID ) {
-        elem = document.getElementById(elementID);
-        if( elem.style.display == "none" ) {
-            elem.style.display = "block";
-        } else if( elem.style.display == "block" ) {
-            elem.style.display = "none";
-        }
-    }
     {{ with .Site.Params.images }}
     function randomHeaderImg() {
         let images = [

--
Gitblit v1.10.0