Commit 382948dc authored by Koukofikis's avatar Koukofikis
Browse files

Merge branch 'MLAB-596' into 'testing'

Open links in new tab

See merge request !134
parents 3e34dc60 ca6f1228
Pipeline #5065 passed with stage
in 13 seconds
......@@ -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