mirror of
https://github.com/zadam/trilium.git
synced 2025-06-05 09:28:45 +02:00
fix history shortcut for firefox
This commit is contained in:
parent
58e3e8895a
commit
b0e2d99a7b
@ -44,7 +44,11 @@ const noteHistory = (function() {
|
||||
}
|
||||
}
|
||||
|
||||
$(document).bind('keydown', 'alt+h', showCurrentNoteHistory);
|
||||
$(document).bind('keydown', 'alt+h', e => {
|
||||
showCurrentNoteHistory();
|
||||
|
||||
e.preventDefault();
|
||||
});
|
||||
|
||||
listEl.on('change', () => {
|
||||
const optVal = listEl.find(":selected").val();
|
||||
|
Loading…
x
Reference in New Issue
Block a user