()
| 177 | supportsTouch() { return false } |
| 178 | |
| 179 | focus() { |
| 180 | if (this.cm.options.readOnly != "nocursor" && (!mobile || activeElt() != this.textarea)) { |
| 181 | try { this.textarea.focus() } |
| 182 | catch (e) {} // IE8 will throw if the textarea is display: none or not in DOM |
| 183 | } |
| 184 | } |
| 185 | |
| 186 | blur() { this.textarea.blur() } |
| 187 |
no test coverage detected