소스 검색

UI.TextArea: Disable spellcheck.

Mr.doob 11 년 전
부모
커밋
c7a590b6f9
1개의 변경된 파일1개의 추가작업 그리고 0개의 파일을 삭제
  1. 1 0
      editor/js/libs/ui.js

+ 1 - 0
editor/js/libs/ui.js

@@ -353,6 +353,7 @@ UI.TextArea = function () {
 	dom.className = 'TextArea';
 	dom.style.padding = '2px';
 	dom.style.border = '1px solid #ccc';
+	dom.spellcheck = false;
 
 	dom.addEventListener( 'keydown', function ( event ) {