Merge branch 'document-onkeydown-event' of wn/tt-rss into js-objects

This commit is contained in:
fox 2018-12-02 17:33:48 +00:00 committed by Gogs
commit e0835eb7f4
1 changed files with 2 additions and 2 deletions

View File

@ -212,7 +212,7 @@ define(["dojo/_base/declare"], function (declare) {
Utils.setLoadingProgress(50);
document.onkeydown = () => { App.hotkeyHandler(event) };
document.onkeydown = (event) => { App.hotkeyHandler(event) };
window.setInterval(() => { Headlines.catchupBatched() }, 10 * 1000);
if (!this.getActive()) {
@ -637,4 +637,4 @@ define(["dojo/_base/declare"], function (declare) {
});
},
});
});
});