From 100e2918b11f7f5bb395825afb93ac9a78f783ee Mon Sep 17 00:00:00 2001 From: alterdekim Date: Fri, 15 Mar 2024 22:21:00 +0300 Subject: [PATCH] loading screen fix --- src/main/resources/static/javascript/game.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/resources/static/javascript/game.js b/src/main/resources/static/javascript/game.js index a60615d..9e398aa 100644 --- a/src/main/resources/static/javascript/game.js +++ b/src/main/resources/static/javascript/game.js @@ -87,7 +87,7 @@ $(document).ready(function() { socket = new SockJS('/websocket'); socket.onopen = function() { - $("#loading").css("display", ""); + $("#loading").css("display", "none"); console.log('open'); sendMessage({}, 'InfoRequest'); };