]> git.wh0rd.org - tt-rss.git/blobdiff - tt-rss.js
feed editor, xmlhttp locking in preferences, try to initialize xmlhttp_rpc via Active...
[tt-rss.git] / tt-rss.js
index 2ed413a97bad9e0b09cbddada0454054219024f1..16ca4cf1af64cf0f41f4236478fd66faed5312f9 100644 (file)
--- 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) {