mirror of
https://github.com/wavelog/wavelog.git
synced 2026-03-22 10:24:14 +00:00
Replace Ø -> 0 in input text too
This commit is contained in:
@@ -288,7 +288,7 @@ async function disconnect() {
|
|||||||
|
|
||||||
//When the send button is pressed
|
//When the send button is pressed
|
||||||
function clickSend() {
|
function clickSend() {
|
||||||
writeToStream(sendText.value).then(function() {
|
writeToStream(sendText.value.replaceAll('Ø', '0')).then(function() {
|
||||||
// writeToStream("\r");
|
// writeToStream("\r");
|
||||||
//and clear the input field, so it's clear it has been sent
|
//and clear the input field, so it's clear it has been sent
|
||||||
$('#sendText').val('');
|
$('#sendText').val('');
|
||||||
|
|||||||
Reference in New Issue
Block a user