summaryrefslogtreecommitdiff
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
parent397f428bc54cf5d5fedde15d9989b472c43a02ee (diff)
more MSIE compatibility fixes
-rw-r--r--prefs.js10
-rw-r--r--prefs.php3
-rw-r--r--tt-rss.js4
3 files changed, 12 insertions, 5 deletions
diff --git a/prefs.js b/prefs.js
index d698cd57e..d95542178 100644
--- a/prefs.js
+++ b/prefs.js
@@ -120,8 +120,10 @@ function addFilter() {
} else {
notify("Adding filter...");
+ var v_match = match[match.selectedIndex].text;
+
xmlhttp.open("GET", "backend.php?op=pref-filters&subop=add&regexp=" +
- param_escape(regexp.value) + "&match=" + match.value, true);
+ param_escape(regexp.value) + "&match=" + v_match, true);
xmlhttp.onreadystatechange=filterlist_callback;
xmlhttp.send(null);
@@ -375,7 +377,9 @@ function filterEditSave() {
var regexp = document.getElementById("iedit_regexp").value;
var descr = document.getElementById("iedit_descr").value;
- var match = document.getElementById("iedit_match").value;
+ var match = document.getElementById("iedit_match");
+
+ var v_match = match[match.selectedIndex].text;
// notify("Saving filter " + filter + ": " + regexp + ", " + descr + ", " + match);
@@ -388,7 +392,7 @@ function filterEditSave() {
xmlhttp.open("GET", "backend.php?op=pref-filters&subop=editSave&id=" +
filter + "&r=" + param_escape(regexp) + "&d=" + param_escape(descr) +
- "&m=" + param_escape(match), true);
+ "&m=" + param_escape(v_match), true);
xmlhttp.onreadystatechange=filterlist_callback;
xmlhttp.send(null);
diff --git a/prefs.php b/prefs.php
index c90d8b533..106488e93 100644
--- a/prefs.php
+++ b/prefs.php
@@ -4,6 +4,9 @@
<link rel="stylesheet" href="tt-rss.css" type="text/css">
<script type="text/javascript" src="functions.js"></script>
<script type="text/javascript" src="prefs.js"></script>
+ <!--[if gte IE 5.5000]>
+ <script type="text/javascript" src="pngfix.js"></script>
+ <![endif]-->
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
</head>
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";