blob: cf8d5c910e17f0fd8f7762021f6a948bed4525c8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
<html>
<head>
<title>OpenQuran - Redirecting</title>
<link rel="manifest" href="src/manifest.json">
</head>
<body>
<script src="src/scripts/main.js" defer></script>
<script src="src/scripts/service-worker.js" defer></script>
<a href="src/">Click here if page doesn't load</a>
<script>
try {
process.versions['electron'];
window.location.href = "src/index.html";
} catch {
window.location.href = "src/";
}
</script>
</body>
</html>
|