fixed: note shortcut
This commit is contained in:
parent
7bb607753e
commit
9c30427af9
5
main.js
5
main.js
|
@ -2545,11 +2545,12 @@ function mainkeydownhandler()
|
||||||
var note = localdata.find(n =>
|
var note = localdata.find(n =>
|
||||||
{
|
{
|
||||||
var shortcut = n.content.match(/shortcut: (.*)/);
|
var shortcut = n.content.match(/shortcut: (.*)/);
|
||||||
if (shortcut)
|
if (shortcut && shortcutmatches(event, shortcut[1]))
|
||||||
{
|
{
|
||||||
console.log("Loading note '" + n.title + "' from header shortcut " + shortcut[1]);
|
console.log("Loading note '" + n.title + "' from header shortcut " + shortcut[1]);
|
||||||
|
event.preventDefault();
|
||||||
loadnote(n.title);
|
loadnote(n.title);
|
||||||
return shortcutmatches(event, shortcut[1]);
|
return true;
|
||||||
}
|
}
|
||||||
return false;
|
return false;
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in New Issue