Merge branch 'stable'

This commit is contained in:
zadam
2019-07-02 21:56:23 +02:00
7 changed files with 26 additions and 5 deletions

View File

@@ -635,6 +635,8 @@ async function createNote(node, parentNoteId, target, extraOptions = {}) {
};
if (target === 'after') {
console.log(`Appending node...`); // to debug duplicated nodes
await node.appendSibling(newNode).setActive(true);
}
else if (target === 'into') {
@@ -642,6 +644,8 @@ async function createNote(node, parentNoteId, target, extraOptions = {}) {
await node.setExpanded();
}
console.log(`Adding node as child...`); // to debug duplicated nodes
node.addChildren(newNode);
await node.getLastChild().setActive(true);