remove psk31 character animation since it's killing the client

This commit is contained in:
Jakob Ketterl
2021-10-13 13:59:55 +02:00
parent aaf696e8d7
commit 9f89a21cfb
2 changed files with 1 additions and 31 deletions

View File

@@ -1458,11 +1458,8 @@ function secondary_demod_push_data(x) {
if (y === "<") return "&lt;";
if (y === ">") return "&gt;";
if (y === " ") return "&nbsp;";
if (y === "\n") return "<br />";
return y;
}).map(function (y) {
if (y === "\n")
return "<br />";
return "<span class=\"part\">" + y + "</span>";
}).join("");
$("#openwebrx-cursor-blink").before(x);
}