mirror of
https://github.com/dscalzi/HeliosLauncher.git
synced 2024-10-31 19:36:39 -07:00
4d26298b98
Moved inline scripts to their own files. Moved all front-end scripts to /assets/js/scripts.
8 lines
223 B
JavaScript
8 lines
223 B
JavaScript
// DOM cache.
|
|
const welcomeButton = document.getElementById('welcomeButton')
|
|
|
|
welcomeButton.addEventListener('click', e => {
|
|
$('#welcomeContainer').fadeOut(500, () => {
|
|
$('#loginContainer').fadeIn(500)
|
|
})
|
|
}) |