Commit ca6f1228 authored by Athanasios's avatar Athanasios
Browse files

Open links in new tab

Open links in new tab under the Zusammenarbeit menu
parent 3e34dc60
......@@ -120,6 +120,9 @@ function head() {
combolink.classList.add("dropdown-item");
combolink.href = menu[j].combos[k].link;
combolink.innerHTML = menu[j].combos[k].name;
if(menu[j].name == "Zusammenarbeit"){
combolink.setAttribute("target", "_blank");
}
combodiv.appendChild(combolink);
}
headitem.appendChild(combodiv);
......
Markdown is supported
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