summaryrefslogtreecommitdiff
path: root/tt-rss.js
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2005-08-24 09:02:58 +0100
committerAndrew Dolgov <[email protected]>2005-08-24 09:02:58 +0100
commit508a81e1b6502ac275a95831befe14d92c9ad55c (patch)
tree3a5da092abfd78612bf4fd1888c5d884185ad576 /tt-rss.js
parent61c1a4d190ebcbfe810cd7c54dacf3279b36989d (diff)
feed editor, xmlhttp locking in preferences, try to initialize xmlhttp_rpc via ActiveX and a big piggie
Diffstat (limited to 'tt-rss.js')
-rw-r--r--tt-rss.js6
1 files changed, 2 insertions, 4 deletions
diff --git a/tt-rss.js b/tt-rss.js
index 2ed413a97..16ca4cf1a 100644
--- a/tt-rss.js
+++ b/tt-rss.js
@@ -18,8 +18,10 @@ try {
} catch (e) {
try {
xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
+ xmlhttp_rpc = new ActiveXObject("Microsoft.XMLHTTP");
} catch (E) {
xmlhttp = false;
+ xmlhttp_rpc = false;
}
}
@end @*/
@@ -30,10 +32,6 @@ if (!xmlhttp && typeof XMLHttpRequest!='undefined') {
}
-function printLockingError() {
- notify("Please wait until operation finishes");
-}
-
function notify_callback() {
var container = document.getElementById('notify');
if (xmlhttp.readyState == 4) {