HeliosLauncher/app/assets/js/scripts/welcome.js

11 lines
373 B
JavaScript
Raw Normal View History

2023-11-25 15:34:04 -08:00
import { VIEWS } from './views.js'
/**
* Script for welcome.ejs
*/
document.getElementById('welcomeButton').addEventListener('click', e => {
2022-02-11 16:51:28 -08:00
loginOptionsCancelEnabled(false) // False by default, be explicit.
loginOptionsViewOnLoginSuccess = VIEWS.landing
loginOptionsViewOnLoginCancel = VIEWS.loginOptions
switchView(VIEWS.welcome, VIEWS.loginOptions)
})