Add empty account home page

This commit is contained in:
Anton Khorev 2024-06-27 03:01:39 +03:00
parent f352c1dfbb
commit bd443cdfb1
6 changed files with 28 additions and 2 deletions

View file

@ -0,0 +1,9 @@
OSM.Home = function (map) {
const page = {};
page.pushstate = page.popstate = page.load = function () {
map.setSidebarOverlaid(true);
};
return page;
};