1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-13 22:25:55 +00:00

feed editor, xmlhttp locking in preferences, try to initialize xmlhttp_rpc via ActiveX and a big piggie

This commit is contained in:
Andrew Dolgov
2005-08-24 09:02:58 +01:00
parent 61c1a4d190
commit 508a81e1b6
6 changed files with 198 additions and 8 deletions

View File

@@ -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) {