(node)
| 138 | } |
| 139 | |
| 140 | var selectInput = function(node) { node.select(); }; |
| 141 | if (ios) // Mobile Safari apparently has a bug where select() is broken. |
| 142 | { selectInput = function(node) { node.selectionStart = 0; node.selectionEnd = node.value.length; }; } |
| 143 | else if (ie) // Suppress mysterious IE10 errors |
no outgoing calls
no test coverage detected