Feature/#19 notifications tab title #31

Merged
kaffem merged 25 commits from feature/#19-notifications-tab-title into develop 2020-10-28 06:46:24 +01:00
Showing only changes of commit ef83390a4d - Show all commits

View file

@ -68,20 +68,9 @@ let __loop = setInterval(() => {
}, 100); }, 100);
function awaitPathnameChange() { function awaitPathnameChange() {
let preLoader = document.getElementById('preloader');
if (typeof preLoader === 'undefined') {
return;
}
let loop = setInterval(() => {
if (preLoader.style.display === "none") {
clearInterval(loop);
__afterPathnameChangeScripts.forEach(script => { __afterPathnameChangeScripts.forEach(script => {
if (window.location.pathname.match(script.pattern)) { if (window.location.pathname.match(script.pattern)) {
script.function(); script.function();
} }
}) })
}
}, 100);
} }