add a reload message

This commit is contained in:
Sky 2023-07-27 16:58:44 -04:00
parent aa46ef4846
commit df369b1284
3 changed files with 5 additions and 1 deletions

View File

@ -51,7 +51,9 @@
<p id="gamecounter"></p>
<input type="text" id="gamesearch" placeholder="Type here to search.."> <br>
<br>
<div id="games"></div>
<div id="games">
<p id="message">Please wait for the games to load.. If you see this for more than a second, try reloading and reporting a <a href="https://forms.gle/j75WUn6UhdqsRZgf7">bug report</a>.</p>
</div>
</div>
</body>

View File

@ -17,6 +17,7 @@ $.getJSON("/games.json", function (data) {
)
);
}
$("#games #message").remove();
});
$(document).ready(function() {

View File

@ -58,6 +58,7 @@ button:hover {
}
#game h1 {
float: right;
font-size: 0.85em;
color: rgb(149, 186, 241)
}