1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-13 15:15:56 +00:00

remove remove_splash()

This commit is contained in:
Andrew Dolgov
2018-11-30 15:13:19 +03:00
parent 02ec3984bd
commit 764434a491

View File

@@ -478,14 +478,10 @@ function loading_set_progress(p) {
dijit.byId("loading_bar").update({progress: loading_progress}); dijit.byId("loading_bar").update({progress: loading_progress});
if (loading_progress >= 90) if (loading_progress >= 90)
remove_splash(); Element.hide("overlay");
} }
function remove_splash() {
Element.hide("overlay");
}
function strip_tags(s) { function strip_tags(s) {
return s.replace(/<\/?[^>]+(>|$)/g, ""); return s.replace(/<\/?[^>]+(>|$)/g, "");
} }