mirror of
https://github.com/dscalzi/HeliosLauncher.git
synced 2024-10-31 19:36:39 -07:00
2f66d44824
Moved server selection styles to launcher.css, as they are nearly finished. Moved overlay convenience functions to overlay.js. Moved launch area (landing.ejs) convenience functions to landing.js. Various cleanups and documentation also added.
8 lines
206 B
JavaScript
8 lines
206 B
JavaScript
/**
|
|
* Script for welcome.ejs
|
|
*/
|
|
document.getElementById('welcomeButton').addEventListener('click', e => {
|
|
$('#welcomeContainer').fadeOut(500, () => {
|
|
$('#loginContainer').fadeIn(500)
|
|
})
|
|
}) |