mirror of
https://github.com/lax1dude/eaglercraft-HTML5_Ping_Embed.git
synced 2024-12-21 12:34:09 -08:00
14 lines
369 B
HTML
14 lines
369 B
HTML
|
<html>
|
||
|
<head>
|
||
|
<title>Eaglercraft Server Embed Test</title>
|
||
|
<script type="text/javascript" src="embed.js"></script>
|
||
|
<script type="text/javascript">
|
||
|
window.addEventListener("load", () => {
|
||
|
new ServerEmbed(document.getElementById("embed"), "75%").ping("127.0.0.1:25565");
|
||
|
});
|
||
|
</script>
|
||
|
</head>
|
||
|
<body style="background-color:black;">
|
||
|
<div id="embed"></div>
|
||
|
</body>
|
||
|
</html>
|