1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-13 22:05:56 +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

@@ -12,6 +12,14 @@ function param_unescape(arg) {
return unescape(arg);
}
function delay(gap) {
var then,now;
then=new Date().getTime();
now=then;
while((now-then)<gap) {
now=new Date().getTime();
}
}
function notify(msg) {
@@ -27,4 +35,8 @@ function notify(msg) {
}
function printLockingError() {
notify("Please wait until operation finishes");
}