Skip to content

Commit

Permalink
Update client.html
Browse files Browse the repository at this point in the history
  • Loading branch information
FiveTechSoft authored May 20, 2024
1 parent e6e5b7f commit 3c5443a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client.html
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@
socket.onclose = function( event ) {
document.getElementById( 'output' ).innerHTML += event.code + '\n';
document.getElementById( 'output' ).innerHTML += event.reason + '\n';
document.getElementById( 'output' ).innerHTML += ( ! event.wasClean ? "": "not " ) +
document.getElementById( 'output' ).innerHTML += ( event.wasClean ? "": "not " ) +
"clean exit" + '\n';
socket = null;
document.getElementById( 'onoff' ).innerHTML = 'Connect';
Expand Down

0 comments on commit 3c5443a

Please sign in to comment.