11 lines
289 B
JavaScript
11 lines
289 B
JavaScript
const showSpeech = function () {
|
|
ebgamesguy = document.getElementById("ebgamesguy-txt-speech-container");
|
|
if (! ebgamesguy.style.display) {
|
|
ebgamesguy.style.display = "flex";
|
|
}
|
|
};
|
|
|
|
window.addEventListener("load", function () {
|
|
console.log("Hello, world!");
|
|
showSpeech();
|
|
});
|