Updates:
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:
parent
8bbc6c75d5
commit
a8b3d5986b
7 changed files with 52 additions and 38 deletions
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue