clone to notes now has overview of notes to clone and is available from context menu

This commit is contained in:
zadam
2019-11-10 22:06:43 +01:00
parent 7539e6a616
commit b53e2a3570
5 changed files with 44 additions and 18 deletions

View File

@@ -16,7 +16,6 @@ const HELP = "../dialogs/help.js";
const NOTE_INFO = "../dialogs/note_info.js";
const ABOUT = "../dialogs/about.js";
const LINK_MAP = "../dialogs/link_map.js";
const CLONE_TO = "../dialogs/clone_to.js";
function registerEntrypoints() {
// hot keys are active also inside inputs and content editables
@@ -185,8 +184,6 @@ function registerEntrypoints() {
return false;
});
utils.bindGlobalShortcut('ctrl+e', () => import(CLONE_TO).then(d => d.showDialog()));
}
export default {