Skip to content

Commit

Permalink
fix: innerHTML -> inner File
Browse files Browse the repository at this point in the history
  • Loading branch information
LeKovr committed Nov 12, 2023
1 parent 6f3274c commit 99cfa06
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion html/webtail.js
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ function titleUnread(s) {
function tail(file) {
WebTail.file = file;
titleReset();
$('#tail-top').find('[rel="title"]')[0].innerHTML = file;
$('#tail-top').find('[rel="title"]')[0].innerText = file;
var m = JSON.stringify({ type: 'attach', channel: file })
window.console.debug("send: " + m);
WebTail.ws.send(m);
Expand Down

0 comments on commit 99cfa06

Please sign in to comment.