mirror of
https://git.tt-rss.org/git/tt-rss.git
synced 2025-12-13 18:35:57 +00:00
onkeydown handlers: fix default keyboard events not being blocked if necessary
This commit is contained in:
@@ -76,7 +76,7 @@ require(["dojo/_base/kernel",
|
||||
initSecondStage: function() {
|
||||
this.enableCsrfSupport();
|
||||
|
||||
document.onkeydown = (event) => { App.hotkeyHandler(event) };
|
||||
document.onkeydown = (event) => { return App.hotkeyHandler(event) };
|
||||
App.setLoadingProgress(50);
|
||||
Notify.close();
|
||||
|
||||
|
||||
Reference in New Issue
Block a user