summaryrefslogblamecommitdiff
path: root/js/init.ts
blob: 020171b31737b97accc1eb1f5c46d5ee834d1785 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
                                      










                                                     
/// <reference path="navigation.ts" />
/// <reference path="theme.ts" />

function init() {
	window.addEventListener("popstate", (_e) => {
		location.reload();
	});

	loadTheme();

	initImages();
}