From cf34db2c619e28fa06b9f5a6df94fe19d193e47c Mon Sep 17 00:00:00 2001 From: Hykilpikonna Date: Sat, 7 Sep 2019 10:07:04 -0400 Subject: [PATCH] [+] Show splash on create --- src/components/app/app.ts | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/src/components/app/app.ts b/src/components/app/app.ts index ea1b630..b01f4ca 100644 --- a/src/components/app/app.ts +++ b/src/components/app/app.ts @@ -52,6 +52,15 @@ export default class App extends Vue // Are the course assignments loaded from the server. public assignmentsReady: boolean = false; + /** + * This is called when the instance is created. + */ + public created() + { + // Show splash + console.log(Constants.SPLASH); + } + /** * This is called when the user logs in. *