diff options
author | jakobst1n <jakob.stendahl@outlook.com> | 2018-09-07 00:32:51 +0200 |
---|---|---|
committer | jakobst1n <jakob.stendahl@outlook.com> | 2018-09-07 00:32:51 +0200 |
commit | 78d7c8d75a5f55ab56dd018edc85ebce9aa033bb (patch) | |
tree | 2ad9da977667b79236cfdd827d0446a5bf9fea18 /public/update | |
download | Luxcena-Neo-78d7c8d75a5f55ab56dd018edc85ebce9aa033bb.tar.gz Luxcena-Neo-78d7c8d75a5f55ab56dd018edc85ebce9aa033bb.zip |
:construction: Add pre-v1 project
Because of some stupid mistakes with the repo, I decided to delete the
git history. Create a new, fresh repo, and move all the code there.
Since all this is pre-v1, everything is in a testing-phase anyways. So i
do not think we are going to feel the need for any history. The old repo
is renamed to Luxcena-Neo-Old, and will be there until i convince
myself i won't need the history.
Diffstat (limited to 'public/update')
-rw-r--r-- | public/update/index.html | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/public/update/index.html b/public/update/index.html new file mode 100644 index 0000000..a2f404f --- /dev/null +++ b/public/update/index.html @@ -0,0 +1,47 @@ +<!DOCTYPE html> +<html id="update"> + <head> + <link rel="stylesheet" href="/css/bundle.css" type="text/css" /> + </head> + + <body> + <div class="start-screen"> + <div class="loading"> + <div class="loading__element el1">L</div> + <div class="loading__element el2">U</div> + <div class="loading__element el3">X</div> + <div class="loading__element el4">C</div> + <div class="loading__element el5">E</div> + <div class="loading__element el6">N</div> + <div class="loading__element el7">A</div> + <div class="loading__element el8"> </div> + <div class="loading__element el9">I</div> + <div class="loading__element el10">S</div> + <div class="loading__element el11"> </div> + <div class="loading__element el12">U</div> + <div class="loading__element el13">P</div> + <div class="loading__element el14">D</div> + <div class="loading__element el15">A</div> + <div class="loading__element el16">T</div> + <div class="loading__element el17">I</div> + <div class="loading__element el18">N</div> + <div class="loading__element el19">G</div> + </div> + <div class="current-event"> + <p id="event-text"></p> + </div> + </div> + + <script type="text/javascript"> + let socket = io(); + + socket.on("updaterStatus", (msg) => { + document.getElementById("event-text").innerHTML = msg; + }); + + setInterval(() => { + socket.emit("UpdaterStatus"); + }, 500); + </script> + </body> +</html> |