From 10652f1b459dd3577ec872c8ac83cf7dbfba16d3 Mon Sep 17 00:00:00 2001 From: kevin Date: Sat, 14 May 2022 10:23:58 -0400 Subject: [PATCH] html/preset_sel/js/ui.js : ws_on_open() now sends 'init' message via ws_send() rather than directly via '_ws'. --- html/preset_sel/js/ui.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/html/preset_sel/js/ui.js b/html/preset_sel/js/ui.js index b704c51..4c65fa2 100644 --- a/html/preset_sel/js/ui.js +++ b/html/preset_sel/js/ui.js @@ -1226,7 +1226,7 @@ function ws_on_msg( jsonMsg ) function ws_on_open() { set_app_title( "Connected", "title_connected" ); - _ws.send("init") + ws_send("init") } function ws_on_close()