2018-04-26 00:11:10 +00:00
|
|
|
/**
|
|
|
|
* Script for welcome.ejs
|
|
|
|
*/
|
|
|
|
document.getElementById('welcomeButton').addEventListener('click', e => {
|
2022-02-12 00:51:28 +00:00
|
|
|
loginOptionsCancelEnabled(false) // False by default, be explicit.
|
|
|
|
loginOptionsViewOnLoginSuccess = VIEWS.landing
|
|
|
|
loginOptionsViewOnLoginCancel = VIEWS.loginOptions
|
|
|
|
switchView(VIEWS.welcome, VIEWS.loginOptions)
|
2018-04-25 21:06:10 +00:00
|
|
|
})
|