summaryrefslogtreecommitdiff
path: root/prefs.js
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2005-08-25 16:26:33 +0100
committerAndrew Dolgov <[email protected]>2005-08-25 16:26:33 +0100
commite2ec66a823f4dc9c3e289a8bc8b90c297c883ee3 (patch)
tree24b5944f4434318ef5804f4465d84883f8b18136 /prefs.js
parentc0e5a40e7307d06eb9926d2645899e9699be54bc (diff)
MSIE5 compatibility workarounds (2)
Diffstat (limited to 'prefs.js')
-rw-r--r--prefs.js15
1 files changed, 14 insertions, 1 deletions
diff --git a/prefs.js b/prefs.js
index 3296ee665..b6270a6df 100644
--- a/prefs.js
+++ b/prefs.js
@@ -275,7 +275,20 @@ function localPiggieFunction(enable) {
}
function init() {
-
+
+ // IE kludge
+
+ if (xmlhttp && !xmlhttp_rpc) {
+ xmlhttp_rpc = xmlhttp;
+ }
+
+ if (!xmlhttp || !xmlhttp_rpc) {
+ document.getElementById("prefContent").innerHTML =
+ "<b>Fatal error:</b> This program needs XmlHttpRequest " +
+ "to function properly. Your browser doesn't seem to support it.";
+ return;
+ }
+
updateFeedList();
document.onkeydown = hotkey_handler;
notify("");