Skip to content

Commit

Permalink
Correct error in clearScreen (#1385)
Browse files Browse the repository at this point in the history
  • Loading branch information
KVonGit authored Jan 19, 2025
1 parent bab55ad commit 1db6c2e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion PlayerController/playercore.js
Original file line number Diff line number Diff line change
Expand Up @@ -791,8 +791,8 @@ function clearScreen() {
setTimeout(function () {
$('html,body').scrollTop(0);
}, 100);
$("#outputData").appendTo($("#divOutput"));
}
$("#outputData").appendTo($("#divOutput"));
}

// Scrollback functions added by KV
Expand Down
2 changes: 1 addition & 1 deletion WebPlayer/playercore.js
Original file line number Diff line number Diff line change
Expand Up @@ -791,8 +791,8 @@ function clearScreen() {
setTimeout(function () {
$('html,body').scrollTop(0);
}, 100);
$("#outputData").appendTo($("#divOutput"));
}
$("#outputData").appendTo($("#divOutput"));
}

// Scrollback functions added by KV
Expand Down

0 comments on commit 1db6c2e

Please sign in to comment.