(field, spellcheck, autocorrect, autocapitalize)
| 11255 | } |
| 11256 | |
| 11257 | function disableBrowserMagic(field, spellcheck, autocorrect, autocapitalize) { |
| 11258 | field.setAttribute("autocorrect", !!autocorrect) |
| 11259 | field.setAttribute("autocapitalize", !!autocapitalize) |
| 11260 | field.setAttribute("spellcheck", !!spellcheck) |
| 11261 | } |
| 11262 | |
| 11263 | function hiddenTextarea() { |
| 11264 | var te = elt("textarea", null, null, "position: absolute; bottom: -1em; padding: 0; width: 1px; height: 1em; outline: none") |
no outgoing calls
no test coverage detected