recent notes changed shortcut to alt-q because of browser conflict with ctrl-e

This commit is contained in:
azivner 2017-08-23 18:45:24 -04:00
parent c1f9ca4796
commit afff834c55
2 changed files with 3 additions and 3 deletions

4
TODO
View file

@ -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

View file

@ -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
}); });