소스 검색

feat: added id and tabindex to terminal title and each text line

Marcelo Vilas Boas Correa Filho 3 년 전
부모
커밋
e04ecc32f6
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      js/io/domConsole.js

+ 2 - 2
js/io/domConsole.js

@@ -7,7 +7,7 @@ export class DOMConsole {
     return `
     <div class="bash-title">
       <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-hidebtn" class="icon window minimize outline" style="float:right"></i>
     </div>
@@ -256,7 +256,7 @@ export class DOMConsole {
 
   getOutputText (text) {
     text = text.replace(/\s/g, "&#160;");
-    return `<span>${text}</span>`;
+    return `<span tabindex="0">${text}</span>`;
   }
 
   getUserInputText (text) {