|
@@ -7,7 +7,7 @@ export class DOMConsole {
|
|
return `
|
|
return `
|
|
<div class="bash-title">
|
|
<div class="bash-title">
|
|
<i id="ivprog-console-clearbtn" class="icon eraser" style="float:left;padding-left: 5px"></i>
|
|
<i id="ivprog-console-clearbtn" class="icon eraser" style="float:left;padding-left: 5px"></i>
|
|
- <span>Terminal</span>
|
|
|
|
|
|
+ <span id="ivprog-console-title-span" tabindex="0">Terminal</span>
|
|
<i id="ivprog-console-showbtn" class="icon window maximize outline" style="float:right"></i>
|
|
<i id="ivprog-console-showbtn" class="icon window maximize outline" style="float:right"></i>
|
|
<i id="ivprog-console-hidebtn" class="icon window minimize outline" style="float:right"></i>
|
|
<i id="ivprog-console-hidebtn" class="icon window minimize outline" style="float:right"></i>
|
|
</div>
|
|
</div>
|
|
@@ -256,7 +256,7 @@ export class DOMConsole {
|
|
|
|
|
|
getOutputText (text) {
|
|
getOutputText (text) {
|
|
text = text.replace(/\s/g, " ");
|
|
text = text.replace(/\s/g, " ");
|
|
- return `<span>${text}</span>`;
|
|
|
|
|
|
+ return `<span tabindex="0">${text}</span>`;
|
|
}
|
|
}
|
|
|
|
|
|
getUserInputText (text) {
|
|
getUserInputText (text) {
|