Starting popup notice

This commit is contained in:
2024-01-14 15:40:20 +01:00
parent a254e5a0c2
commit a085fcd92b
9 changed files with 60 additions and 17 deletions

View File

@ -19,6 +19,8 @@ import TournamentPageView from "./views/tournament/TournamentPageView.js";
import TournamentsView from "./views/tournament/TournamentsListView.js";
import TournamentCreateView from "./views/tournament/TournamentCreateView.js";
import {manage_popup} from "./utils/noticeUtils.js";
let client = new Client(location.protocol + "//" + location.host)
let lastView = undefined
@ -107,6 +109,8 @@ const router = async(uri) => {
if (await renderView(view))
return 1;
manage_popup(client)
return 0;
};