This repository has been archived on 2025-04-11. You can view files and clone it, but cannot push or open issues or pull requests.
ebgamesreal-live/index.js

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();
});