info message about copying / cutting into clipboard

This commit is contained in:
azivner 2018-01-01 22:33:21 -05:00
parent ad7fa5e096
commit 37995f1ce5

View file

@ -60,11 +60,15 @@ const contextMenu = (function() {
function copy(nodes) {
clipboardIds = nodes.map(node => node.data.note_id);
clipboardMode = 'copy';
showMessage("Note(s) have been copied into clipboard.");
}
function cut(nodes) {
clipboardIds = nodes.map(node => node.key);
clipboardMode = 'cut';
showMessage("Note(s) have been cut into clipboard.");
}
const contextMenuSettings = {