(e)
| 150 | } |
| 151 | |
| 152 | function onclick(e) { |
| 153 | reset(); |
| 154 | |
| 155 | if (e.target.disabled) { |
| 156 | e.preventDefault(); |
| 157 | e.stopPropagation(); |
| 158 | return; |
| 159 | } |
| 160 | |
| 161 | e.preventDefault(); |
| 162 | e.stopPropagation(); |
| 163 | click(e.target); |
| 164 | clearTimeout(timeout); |
| 165 | } |
| 166 | |
| 167 | function touchstart(e) { |
| 168 | reset(); |
nothing calls this directly
no test coverage detected