notes with multiple parents are now marked with dashed underline

This commit is contained in:
azivner 2017-11-21 18:39:56 -05:00
parent 163a03663f
commit 84a9e9067d
2 changed files with 17 additions and 1 deletions

View File

@ -106,8 +106,20 @@ const noteTree = (function() {
note.title = note.note_title;
note.extraClasses = "";
if (note.is_protected) {
note.extraClasses = "protected";
note.extraClasses += ",protected";
}
if (childToParents[childNoteId].length > 1) {
console.log("Multiple classes!");
note.extraClasses += ",multiple-parents";
}
if (note.extraClasses.startsWith(",")) {
note.extraClasses = note.extraClasses.substr(1);
}
note.key = counter++ + ""; // key needs to be string

View File

@ -73,6 +73,10 @@ span.fancytree-node.protected.fancytree-folder > span.fancytree-icon {
background-image: url("../images/icons/folder-shaded.png");
}
span.fancytree-node.multiple-parents .fancytree-title {
text-decoration: underline dashed;
}
.ui-autocomplete {
max-height: 300px;
overflow-y: auto;