mirror of
https://git.tt-rss.org/fox/tt-rss.git
synced 2025-10-11 19:11:04 +02:00
onkeydown handlers: fix default keyboard events not being blocked if necessary
This commit is contained in:
parent
edd348b16c
commit
85adef06f4
@ -212,7 +212,7 @@ define(["dojo/_base/declare"], function (declare) {
|
||||
|
||||
App.setLoadingProgress(50);
|
||||
|
||||
document.onkeydown = (event) => { App.hotkeyHandler(event) };
|
||||
document.onkeydown = (event) => { return App.hotkeyHandler(event) };
|
||||
window.setInterval(() => { Headlines.catchupBatched() }, 10 * 1000);
|
||||
|
||||
if (!this.getActive()) {
|
||||
|
@ -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();
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user