We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 27de877 + 2973146 commit 5224970Copy full SHA for 5224970
js/terminal.js
@@ -9,7 +9,9 @@ function runRootTerminal(term) {
9
term.runDeepLink();
10
term.prompt();
11
12
- window.addEventListener("resize", term.resizeListener);
+ window.on('load', () => {
13
+ window.addEventListener("resize", term.resizeListener);
14
+ });
15
16
term.onData(e => {
17
if (term._initialized && !term.locked) {
0 commit comments