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

more MSIE compatibility fixes

This commit is contained in:
Andrew Dolgov
2005-09-08 06:02:49 +01:00
parent 397f428bc5
commit 25cb57366a
3 changed files with 12 additions and 5 deletions

View File

@@ -168,7 +168,7 @@ function viewfeed(feed, skip, subop) {
var view_mode;
if (viewbox) {
view_mode = viewbox.value;
view_mode = viewbox[viewbox.selectedIndex].text;
} else {
view_mode = "All Posts";
}
@@ -180,7 +180,7 @@ function viewfeed(feed, skip, subop) {
var limit;
if (limitbox) {
limit = limitbox.value;
limit = limitbox[limitbox.selectedIndex].text;
setCookie("ttrss_vf_limit", limit);
} else {
limit = "All";