From 8ef9b152f0c87a24970af14a8bfcc182261efe0f Mon Sep 17 00:00:00 2001 From: Hykilpikonna Date: Sat, 1 Aug 2020 19:45:47 -0400 Subject: [PATCH] [+] Add demo notification --- src/components/app/app-demo.ts | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/src/components/app/app-demo.ts b/src/components/app/app-demo.ts index eef86a4..3538b67 100644 --- a/src/components/app/app-demo.ts +++ b/src/components/app/app-demo.ts @@ -28,6 +28,18 @@ export default class AppDemo app.logLoading(''); app.assignmentsReady = true app.showRating = true + + app.$alert( + 'This demo analyzes an offline snapshot of my data from Jun 6, 2020,
' + + 'which displays my academic results from Junior year.
' + + '
' + + 'Online features like submitting reviews obviously won\'t work,
' + + 'Besides from that, feel free to click around! ๐Ÿ˜‡
' + + '
' + + '-- The Veracross Analyzer Team (YGui)
' + + '-- Made with ๐Ÿงก in SJP', + '๐Ÿฅณ Welcome to VeracrossAnalyzer Demo!', + {dangerouslyUseHTMLString: true, confirmButtonText: 'OK', customClass: 'comic'}); }) }) }