From 1d404b4f513b3e8133fce76d5e3edbb7f3274b6a Mon Sep 17 00:00:00 2001 From: Hykilpikonna Date: Sun, 5 Jan 2020 16:22:25 -0500 Subject: [PATCH] [+] Detect static pages --- src/components/app/app.ts | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/components/app/app.ts b/src/components/app/app.ts index 3cf2e46..9d1cd15 100644 --- a/src/components/app/app.ts +++ b/src/components/app/app.ts @@ -58,6 +58,12 @@ export default class App extends Vue // Update instance App.instance = this; + + // Check location + if (window.location.hash == '#info') + { + this.staticPage = 'info'; + } } /**