From: Steinar H. Gunderson Date: Fri, 23 Dec 2022 09:46:06 +0000 (+0100) Subject: Fix another jQuery-ism. X-Git-Url: https://git.sesse.net/?p=remoteglot;a=commitdiff_plain;h=e413d8f176da1e3233ca913c1494aeb1afed5bcc Fix another jQuery-ism. --- diff --git a/www/js/remoteglot.js b/www/js/remoteglot.js index 2d74a39..183d372 100644 --- a/www/js/remoteglot.js +++ b/www/js/remoteglot.js @@ -809,9 +809,9 @@ var update_history = function() { } else if (truncate_display_history) { document.getElementById("history").innerHTML = print_pv(0, null, 8, true); } else { - document.getElementById("history").html( + document.getElementById("history").innerHTML = '(collapse) ' + - print_pv(0, null)); + print_pv(0, null); } }