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:
12
functions.js
12
functions.js
@@ -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");
|
||||
}
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user