summaryrefslogtreecommitdiff
path: root/tt-rss.js
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2005-09-08 06:02:49 +0100
committerAndrew Dolgov <[email protected]>2005-09-08 06:02:49 +0100
commit25cb57366a45f8b41ac632553c462e2636a09ed6 (patch)
treec7b08d916f6bf67aa5e41c6b6d8e6fd07afd6c7d /tt-rss.js
parent397f428bc54cf5d5fedde15d9989b472c43a02ee (diff)
more MSIE compatibility fixes
Diffstat (limited to 'tt-rss.js')
-rw-r--r--tt-rss.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/tt-rss.js b/tt-rss.js
index c0ad28e2e..234fb3634 100644
--- a/tt-rss.js
+++ b/tt-rss.js
@@ -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";