Commit 1331e829 authored by Patrick's avatar Patrick
Browse files

index.html, History.md und 6 weitere dateien aktualisiert...

parent 6251594a
...@@ -28,9 +28,9 @@ var dropC = document.getElementById("dropdownContent") ...@@ -28,9 +28,9 @@ var dropC = document.getElementById("dropdownContent")
function dropdownFunk() { function dropdownFunk() {
if (dropD.className == "can-touch"){ if (dropD.className == "can-touch"){
if (dropC.style.display === "none"){ if (dropC.style.display == "none" || dropC.style.display == ""){
dropC.style.display = "block"; dropC.style.display = "block";
} else if (dropC.style.display === "block"){ } else if (dropC.style.display == "block"){
dropC.style.display = "none"; dropC.style.display = "none";
} }
} }
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment