summaryrefslogtreecommitdiff
path: root/functions.js
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2008-05-19 13:00:35 +0100
committerAndrew Dolgov <[email protected]>2008-05-19 13:00:35 +0100
commit08827aafd72ccc84d8856e3a7a07abd7d93fad33 (patch)
treebb92ccac64676dde0087ae0602a259268f71eaac /functions.js
parentd9e4bba015b7095673fe8d35315bff41bb1f6bcd (diff)
prefs: add loading progressbar
Diffstat (limited to 'functions.js')
-rw-r--r--functions.js8
1 files changed, 8 insertions, 0 deletions
diff --git a/functions.js b/functions.js
index 01de05b22..83e24bf09 100644
--- a/functions.js
+++ b/functions.js
@@ -1697,3 +1697,11 @@ function loading_set_progress(p) {
exception_error("loading_set_progress", e);
}
}
+
+function remove_splash() {
+ if (Element.visible("overlay")) {
+ debug("about to remove splash, OMG!");
+ Element.hide("overlay");
+ debug("removed splash!");
+ }
+}