Browse Source

UI.TextArea: Disable spellcheck.

Mr.doob 11 years ago
parent
commit
c7a590b6f9
1 changed files with 1 additions and 0 deletions
  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 ) {