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

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

parent 6251594a
......@@ -27,13 +27,13 @@ var dropD = document.getElementById("dropdownMain")
var dropC = document.getElementById("dropdownContent")
function dropdownFunk() {
if (dropD.className == "can-touch"){
if (dropC.style.display === "none"){
if (dropD.className == "can-touch"){
if (dropC.style.display == "none" || dropC.style.display == ""){
dropC.style.display = "block";
} else if (dropC.style.display === "block"){
} else if (dropC.style.display == "block"){
dropC.style.display = "none";
}
}
}
}
// dropD.onclick = function(){
// if (dropD.className == "can-touch"){
......
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