We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5cf69e0 commit 275c958Copy full SHA for 275c958
src/controlAssistPMem.h
@@ -123,7 +123,7 @@ function wsHeartBeat() {
123
}
124
// Connected
125
function onWsOpen(event) {
126
- setStatus("Connected")
+ setStatus("Connected: " + wsServer)
127
wsHeartBeat();
128
129
// Handle websocket messages
@@ -199,7 +199,8 @@ PROGMEM const char CONTROLASSIST_HTML_HEADER[] = R"=====(
199
<meta charset="utf-8">
200
<meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate" />
201
<meta name="viewport" content="width=device-width,initial-scale=1,user-scalable=no"/>
202
- <title>Control Assist</title>
+ <link rel="shortcut icon" href="data:" />
203
+ <title>ControlAssist</title>
204
</head>
205
)=====";
206
//Template for body of the html page
0 commit comments