Skip to content
Snippets Groups Projects
Commit ce38a313 authored by Harm Kube's avatar Harm Kube
Browse files

Fixed problem with open marker of categories

parent 21c8b659
No related branches found
No related tags found
No related merge requests found
Pipeline #55571 passed
......@@ -183,7 +183,11 @@ class NodeNeighborOverlay {
this.tabNavHandles[page.type].style.display = "none";
} else {
this.tabNavHandles[page.type].style.display = "flex";
this.tabNavHandles[page.type].marker.innerText = '+';
if (this.tabContentPages[page.type].style.display == "flex") {
this.tabNavHandles[page.type].marker.innerText = '-';
} else {
this.tabNavHandles[page.type].marker.innerText = '+';
}
}
}
}
......@@ -199,7 +203,11 @@ class NodeNeighborOverlay {
} else {
if(page.list.hasChildNodes()) {
this.tabNavHandles[page.type].style.display = "flex";
this.tabNavHandles[page.type].marker.innerText = '+';
if (this.tabContentPages[page.type].style.display == "flex") {
this.tabNavHandles[page.type].marker.innerText = '-';
} else {
this.tabNavHandles[page.type].marker.innerText = '+';
}
}
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment