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

12 lines
289 B
JavaScript
Raw Normal View History

const showSpeech = function () {
ebgamesguy = document.getElementById("ebgamesguy-txt-speech-container");
if (! ebgamesguy.style.display) {
ebgamesguy.style.display = "flex";
}
};
2020-04-10 14:46:27 -05:00
window.addEventListener("load", function () {
console.log("Hello, world!");
showSpeech();
});