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

8 lines
223 B
JavaScript
Raw Normal View History

// DOM cache.
const welcomeButton = document.getElementById('welcomeButton')
welcomeButton.addEventListener('click', e => {
$('#welcomeContainer').fadeOut(500, () => {
$('#loginContainer').fadeIn(500)
})
})