1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-15 22:05:56 +00:00

fix forced selection of dropboxes (functions.js:dropboxSelect())

This commit is contained in:
Andrew Dolgov
2005-12-20 12:14:24 +01:00
parent a9b0bfd5e0
commit 1b0809ae45
3 changed files with 24 additions and 7 deletions

View File

@@ -192,7 +192,11 @@ function toggleCollapseCat(cat) {
}
function init() {
hideOrShowFeeds(document, getCookie("ttrss_vf_hreadf") == 1);
document.onkeydown = hotkey_handler;
parent.setTimeout("timeout()", 1000);
try {
hideOrShowFeeds(document, getCookie("ttrss_vf_hreadf") == 1);
document.onkeydown = hotkey_handler;
parent.setTimeout("timeout()", 1000);
} catch (e) {
exception_error("feedlist/init()", e);
}
}