client: fix lint "quotes"

This commit is contained in:
Johann150 2022-08-03 22:48:13 +02:00 committed by ThatOneCalculator
parent e7d942554a
commit db6907a6fa
2 changed files with 2 additions and 2 deletions

View File

@ -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',

View File

@ -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;