diff options
fix: ?.
-rw-r--r-- | src/routes/shared.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/routes/shared.ts b/src/routes/shared.ts index ff5b574..56467a1 100644 --- a/src/routes/shared.ts +++ b/src/routes/shared.ts @@ -591,7 +591,7 @@ export const ttyLines: TTYText[] = (() => { }, ], [ - `skip the animation<img style="opacity:0;position:fixed;top:0;left:0;width:0px;height:0px;pointer-events:none;" src='about:blank' onerror='setTimeout(()=>{if(location.pathname==="/skip-animation")document.querySelector(${JSON.stringify(`a[href=${JSON.stringify("/skip-animation")}]`)}).parentElement.remove();else document.querySelector(${JSON.stringify(`a[href=${JSON.stringify("about:blank")}]`)}).remove();},1)' />`, + `skip the animation<img style="opacity:0;position:fixed;top:0;left:0;width:0px;height:0px;pointer-events:none;" src='about:blank' onerror='setTimeout(()=>{if(location.pathname==="/skip-animation")document.querySelector(${JSON.stringify(`a[href=${JSON.stringify("/skip-animation")}]`)})?.parentElement?.remove();else document.querySelector(${JSON.stringify(`a[href=${JSON.stringify("about:blank")}]`)})?.remove();},1)' />`, { url: "currenttab:/skip-animation", colour: "#fff2", |