mirror of
https://codeberg.org/ashley/poke.git
synced 2024-11-13 02:38:04 +01:00
move stuff a bit :3
This commit is contained in:
parent
ada7b2cfa8
commit
5283aefc01
1 changed files with 11 additions and 6 deletions
|
@ -1972,6 +1972,12 @@ fetch(statsurl + "?browser=" + encodedBrowserName)
|
||||||
|
|
||||||
|
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
if ('serviceWorker' in navigator) {
|
||||||
|
navigator.serviceWorker.register('service-worker.js');
|
||||||
|
}
|
||||||
|
</script>
|
||||||
</ptd-app-ejs>
|
</ptd-app-ejs>
|
||||||
</body>
|
</body>
|
||||||
|
|
||||||
|
@ -3121,6 +3127,11 @@ window.addEventListener('load', () => {
|
||||||
<% } %>
|
<% } %>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
if ('serviceWorker' in navigator) {
|
||||||
|
navigator.serviceWorker.register('service-worker.js');
|
||||||
|
}
|
||||||
|
</script>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
</body>
|
</body>
|
||||||
|
@ -3131,9 +3142,3 @@ window.addEventListener('load', () => {
|
||||||
<% } catch (error) { %>
|
<% } catch (error) { %>
|
||||||
<%- error %>
|
<%- error %>
|
||||||
<% } %>
|
<% } %>
|
||||||
|
|
||||||
<script>
|
|
||||||
if ('serviceWorker' in navigator) {
|
|
||||||
navigator.serviceWorker.register('service-worker.js');
|
|
||||||
}
|
|
||||||
</script>
|
|
Loading…
Reference in a new issue