summaryrefslogtreecommitdiff
path: root/functions.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 /functions.js
parent61c1a4d190ebcbfe810cd7c54dacf3279b36989d (diff)
feed editor, xmlhttp locking in preferences, try to initialize xmlhttp_rpc via ActiveX and a big piggie
Diffstat (limited to 'functions.js')
-rw-r--r--functions.js12
1 files changed, 12 insertions, 0 deletions
diff --git a/functions.js b/functions.js
index 25a19908b..b634974ab 100644
--- a/functions.js
+++ b/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");
+}
+