disable autocapitalize and autocorrect in fixIpad

This commit is contained in:
Austin Robertson
2013-12-22 20:37:48 -06:00
parent d8edf7d24f
commit 6d46d3aa77
+2
View File
@@ -612,6 +612,8 @@ Terminal.fixIpad = function(document) {
textarea.style.backgroundColor = 'transparent';
textarea.style.borderStyle = 'none';
textarea.style.outlineStyle = 'none';
textarea.autocapitalize='none';
textarea.autocorrect='off';
document.getElementsByTagName('body')[0].appendChild(textarea);