removing extra actions (add link, cloning) from jump to dialog

This commit is contained in:
azivner
2017-12-21 22:03:13 -05:00
parent 262b02c1b2
commit e007ec5e21
2 changed files with 2 additions and 34 deletions

View File

@@ -50,33 +50,7 @@ const jumpToNote = (function() {
formEl.submit(() => {
const action = dialogEl.find("button:focus").val();
if (!action || action === 'jump') {
goToNote();
}
else if (action === 'add-link') {
const notePath = getSelectedNotePath();
if (notePath) {
dialogEl.dialog("close");
const noteId = treeUtils.getNoteIdFromNotePath(notePath);
link.addLinkToEditor(noteTree.getNoteTitle(noteId), '#' + notePath);
}
}
else if (action === 'add-current-as-child') {
treeChanges.cloneNoteTo(noteEditor.getCurrentNoteId(), getSelectedNoteId());
dialogEl.dialog("close");
}
else if (action === 'add-selected-as-child') {
treeChanges.cloneNoteTo(getSelectedNoteId(), noteEditor.getCurrentNoteId());
dialogEl.dialog("close");
}
else {
messaging.logError("Unknown action=" + action);
}
goToNote();
return false;
});