CTRL-C CTRL-V now clones the note

This commit is contained in:
azivner
2017-11-28 11:36:32 -05:00
parent 7038636d2e
commit 0cab4e3edd
3 changed files with 12 additions and 14 deletions

View File

@@ -15,8 +15,11 @@ const contextMenu = (function() {
else if (clipboardMode === 'copy') {
treeChanges.cloneNoteAfter(clipboardId, node.data.note_tree_id);
}
else if (clipboardId === null) {
// just do nothing
}
else {
throw new Error("Unrecognized clipboard mode=" + mode);
throw new Error("Unrecognized clipboard mode=" + clipboardMode);
}
clipboardId = null;
@@ -127,6 +130,7 @@ const contextMenu = (function() {
pasteAfter,
pasteInto,
cut,
copy,
contextMenuSettings
}
})();