mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2024-11-14 14:07:38 -07:00
client: fix lint "quotes"
This commit is contained in:
parent
d194c1ee20
commit
c6898565ce
2 changed files with 2 additions and 2 deletions
|
@ -6,7 +6,7 @@ import { lang } from '@/config';
|
|||
export async function initializeSw() {
|
||||
if (!('serviceWorker' in navigator)) return;
|
||||
|
||||
navigator.serviceWorker.register(`/sw.js`, { scope: '/', type: 'classic' });
|
||||
navigator.serviceWorker.register('/sw.js', { scope: '/', type: 'classic' });
|
||||
navigator.serviceWorker.ready.then(registration => {
|
||||
registration.active?.postMessage({
|
||||
msg: 'initialize',
|
||||
|
|
|
@ -109,7 +109,7 @@ export function physics(container: HTMLElement) {
|
|||
render.mouse = mouse;
|
||||
|
||||
for (const objEl of objEls) {
|
||||
objEl.style.position = `absolute`;
|
||||
objEl.style.position = 'absolute';
|
||||
objEl.style.top = 0;
|
||||
objEl.style.left = 0;
|
||||
objEl.style.margin = 0;
|
||||
|
|
Loading…
Reference in a new issue