welcome.js 337 B

123456789
  1. /**
  2. * Script for welcome.ejs
  3. */
  4. document.getElementById('welcomeButton').addEventListener('click', e => {
  5. loginOptionsCancelEnabled(false) // False by default, be explicit.
  6. loginOptionsViewOnLoginSuccess = VIEWS.landing
  7. loginOptionsViewOnLoginCancel = VIEWS.loginOptions
  8. switchView(VIEWS.welcome, VIEWS.loginOptions)
  9. })