summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2018-11-30 15:13:19 +0300
committerAndrew Dolgov <[email protected]>2018-11-30 15:13:19 +0300
commit764434a491ee0b42b70d262fa49aee2b6a9e93a8 (patch)
treeb665d19ecff453f973ef5c0a3aaf9b94b897be1c
parent02ec3984bd18f8a1c55dec448d1d401e3e5a1880 (diff)
remove remove_splash()
-rwxr-xr-xjs/functions.js6
1 files changed, 1 insertions, 5 deletions
diff --git a/js/functions.js b/js/functions.js
index 6a895fc50..25aa26d39 100755
--- a/js/functions.js
+++ b/js/functions.js
@@ -478,14 +478,10 @@ function loading_set_progress(p) {
dijit.byId("loading_bar").update({progress: loading_progress});
if (loading_progress >= 90)
- remove_splash();
+ Element.hide("overlay");
}
-function remove_splash() {
- Element.hide("overlay");
-}
-
function strip_tags(s) {
return s.replace(/<\/?[^>]+(>|$)/g, "");
}