1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-14 11:25:55 +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

@@ -365,16 +365,20 @@ function init_second_stage() {
document.onkeydown = hotkey_handler;
var content = document.getElementById("content");
dropboxSelect(viewbox, getCookie("ttrss_vf_vmode"));
if (getCookie("ttrss_vf_vmode")) {
var viewbox = document.getElementById("viewbox");
viewbox.value = getCookie("ttrss_vf_vmode");
/* if (getCookie("ttrss_vf_vmode")) {
var viewbox = document.getElementById("viewbox");
if (getCookie("ttrss_vf_vmode")) {
viewbox.value = getCookie("ttrss_vf_vmode");
}
}
if (getCookie("ttrss_vf_limit")) {
var limitbox = document.getElementById("limitbox");
limitbox.value = getCookie("ttrss_vf_limit");
}
} */
// if (getCookie("ttrss_vf_actfeed")) {
// viewfeed(getCookie("ttrss_vf_actfeed"), 0, '');