mirror of
https://github.com/zadam/trilium.git
synced 2025-03-04 02:53:30 +08:00
recent notes changed shortcut to alt-q because of browser conflict with ctrl-e
This commit is contained in:
parent
c1f9ca4796
commit
afff834c55
2 changed files with 3 additions and 3 deletions
4
TODO
4
TODO
|
@ -1,5 +1,5 @@
|
||||||
- when loading the app, open last viewed note
|
- some features (recent notes, linking to notes) don't work well with cloned notes
|
||||||
- link to individual notes (and changing the URL to current one, probably through # anchor)
|
- when jumping to notes, tree does not scroll
|
||||||
- logout detection
|
- logout detection
|
||||||
- conflict detection
|
- conflict detection
|
||||||
|
|
||||||
|
|
|
@ -16,7 +16,7 @@ $(document).bind('keypress', 'alt+ctrl+h', function() {
|
||||||
toggle.css('visibility', toggle.css('visibility') === 'hidden' ? 'visible' : 'hidden');
|
toggle.css('visibility', toggle.css('visibility') === 'hidden' ? 'visible' : 'hidden');
|
||||||
});
|
});
|
||||||
|
|
||||||
$(document).bind('keypress', 'ctrl+e', function() {
|
$(document).bind('keypress', 'alt+q', function() {
|
||||||
$("#recentNotesDialog").dialog({
|
$("#recentNotesDialog").dialog({
|
||||||
modal: true
|
modal: true
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in a new issue