summaryrefslogtreecommitdiff
path: root/feedlist.js
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2006-05-23 08:15:48 +0100
committerAndrew Dolgov <[email protected]>2006-05-23 08:15:48 +0100
commita756529344fa6bfab8deded10c9750ce1bfd56ac (patch)
tree4dc3f924c31b456675416c3376a3b0ec97e4ebe6 /feedlist.js
parentee1f45f4c77703b85c63bca1888b1c9cab3168da (diff)
add sanity check & debug mode to prefs; misc code cleanups
Diffstat (limited to 'feedlist.js')
-rw-r--r--feedlist.js24
1 files changed, 1 insertions, 23 deletions
diff --git a/feedlist.js b/feedlist.js
index d32ff1550..355b4d885 100644
--- a/feedlist.js
+++ b/feedlist.js
@@ -1,29 +1,7 @@
-var xmlhttp = false;
+var xmlhttp = Ajax.getTransport();
var cat_view_mode = false;
-/*@cc_on @*/
-/*@if (@_jscript_version >= 5)
-// JScript gives us Conditional compilation, we can cope with old IE versions.
-// and security blocked creation of the objects.
-try {
- xmlhttp = new ActiveXObject("Msxml2.XMLHTTP");
-} catch (e) {
- try {
- xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
- xmlhttp_rpc = new ActiveXObject("Microsoft.XMLHTTP");
- } catch (E) {
- xmlhttp = false;
- xmlhttp_rpc = false;
- }
-}
-@end @*/
-
-if (!xmlhttp && typeof XMLHttpRequest!='undefined') {
- xmlhttp = new XMLHttpRequest();
- xmlhttp_rpc = new XMLHttpRequest();
-}
-
function viewCategory(cat) {
viewfeed(cat, 0, '', false, true);
}