Fix: readd missing files

This commit is contained in:
Pieter Vander Vennet 2023-07-16 01:50:06 +02:00
parent 13a35b9420
commit 7d802d418b
6 changed files with 260 additions and 0 deletions

42
test.html Normal file
View file

@ -0,0 +1,42 @@
<!DOCTYPE html>
<html>
<head>
<title>Small tests</title>
<link href="index.css" rel="stylesheet"/>
<link href="./index.css" rel="stylesheet"/>
<link href="./css/tabbedComponent.css" rel="stylesheet"/>
<link href="./css/mobile.css" rel="stylesheet"/>
<link href="./css/openinghourstable.css" rel="stylesheet"/>
<link href="./css/tagrendering.css" rel="stylesheet"/>
<link href="./css/index-tailwind-output.css" rel="stylesheet"/>
<link href="./css/wikipedia.css" rel="stylesheet"/>
<link href="css/ReviewElement.css" rel="stylesheet"/>
<meta content="website" property="og:type">
<meta content="width=device-width, initial-scale=1.0, user-scalable=no" name="viewport">
</head>
<body>
<div id="maindiv" class="w-full">'maindiv' not attached</div>
<div id="extradiv">'extradiv' not attached</div>
<script type="module" src="./test.ts"></script>
<script>
window.addEventListener('load', () => {
if ('serviceWorker' in navigator) {
// register service worker
navigator.serviceWorker.register('/service-worker.js').then(
() => {
console.log('SW registration successful');
},
err => {
console.error('SW registration failed', err)
});
} else {
console.error("Service workers are not supported")
}
});
</script>
</body>
</html>