1. Fixed thread view, it didn't really seem to work before at all.
2. Removed excess buttons for notes, will extend into a drop down menu
   TODO.
This commit is contained in:
Thomas Mathews 2023-03-24 20:12:38 -07:00
parent 8bbc6c75d5
commit a8b3d5986b
7 changed files with 52 additions and 38 deletions

View file

@ -133,6 +133,8 @@ function find_nodes(selector, parentEl) {
function find_parent(el, selector) {
while (el && !el.matches(selector)) {
el = el.parentNode;
if (!el.matches)
return undefined;
}
return el;
}