break: remove /ws from websocket path

This commit is contained in:
Sebastian Mark 2024-11-18 17:43:49 +01:00
parent 256837c130
commit e8e65c4f3a
2 changed files with 3 additions and 3 deletions

View file

@ -64,7 +64,7 @@
<button id="resetButton" style="display: none;">Reset</button>
<script>
var ws = new WebSocket("ws://localhost:8080/ws");
var ws = new WebSocket("ws://localhost:8080");
var isPaused = false; // Track if the timer is paused
ws.onopen = function () {