From 7a156afbf154d7822115d7caf056f6ca7d52f5fa Mon Sep 17 00:00:00 2001 From: azivner Date: Wed, 23 Aug 2017 20:05:54 -0400 Subject: [PATCH] move from shift+insert to ctrl+insert because shift+insert can paste clipboard content into the note --- static/js/tree.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/static/js/tree.js b/static/js/tree.js index 8b9cbd8c0..fb29c3705 100644 --- a/static/js/tree.js +++ b/static/js/tree.js @@ -67,7 +67,7 @@ $(function(){ createNote(node, parentKey, 'after'); }, - "shift+insert": function(node) { + "ctrl+insert": function(node) { createNote(node, node.key, 'into'); }, "del": function(node) {