diff options
| author | Andrew Dolgov <fox@madoka.spb.ru> | 2006-05-23 08:15:48 +0100 |
|---|---|---|
| committer | Andrew Dolgov <fox@madoka.spb.ru> | 2006-05-23 08:15:48 +0100 |
| commit | a756529344fa6bfab8deded10c9750ce1bfd56ac (patch) | |
| tree | 4dc3f924c31b456675416c3376a3b0ec97e4ebe6 /viewfeed.js | |
| parent | ee1f45f4c77703b85c63bca1888b1c9cab3168da (diff) | |
add sanity check & debug mode to prefs; misc code cleanups
Diffstat (limited to 'viewfeed.js')
| -rw-r--r-- | viewfeed.js | 21 |
1 files changed, 1 insertions, 20 deletions
diff --git a/viewfeed.js b/viewfeed.js index 17ffa7fc8..8e665acdc 100644 --- a/viewfeed.js +++ b/viewfeed.js @@ -1,25 +1,6 @@ var active_post_id = false; -var xmlhttp_rpc = 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_rpc = new ActiveXObject("Msxml2.XMLHTTP"); -} catch (e) { - try { - xmlhttp_rpc = new ActiveXObject("Microsoft.XMLHTTP"); - } catch (E) { - xmlhttp_rpc = false; - } -} -@end @*/ - -if (!xmlhttp_rpc && typeof XMLHttpRequest!='undefined') { - xmlhttp_rpc = new XMLHttpRequest(); -} +var xmlhttp_rpc = Ajax.getTransport(); function view(id, feed_id) { |