From 7a2aa29dd7159cd4b19f5e7aa20b1e4f0390ae34 Mon Sep 17 00:00:00 2001 From: Lukas Lowinger Date: Mon, 24 Jul 2023 15:07:15 +0200 Subject: [PATCH] Fixes #1304 --- .../src/main/resources/META-INF/resources/index.html | 1 + 1 file changed, 1 insertion(+) diff --git a/websockets-quickstart/src/main/resources/META-INF/resources/index.html b/websockets-quickstart/src/main/resources/META-INF/resources/index.html index 69f10e65e2..fb0fb8fc77 100644 --- a/websockets-quickstart/src/main/resources/META-INF/resources/index.html +++ b/websockets-quickstart/src/main/resources/META-INF/resources/index.html @@ -82,6 +82,7 @@ socket.onopen = function() { connected = true; console.log("Connected to the web socket"); + socket.send("_ready_"); $("#send").attr("disabled", false); $("#connect").attr("disabled", true); $("#name").attr("disabled", true);