html/preset_sel/js/ui.js : ws_on_open() now sends 'init' message via ws_send() rather than directly via '_ws'.

This commit is contained in:
kevin 2022-05-14 10:23:58 -04:00
parent 7d7b194b48
commit 10652f1b45

View File

@ -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()