(cm)
| 162 | } |
| 163 | |
| 164 | function onChange(cm) { |
| 165 | var state = cm.state.lint; |
| 166 | clearTimeout(state.timeout); |
| 167 | state.timeout = setTimeout(function(){startLinting(cm);}, state.options.delay || 500); |
| 168 | } |
| 169 | |
| 170 | function popupSpanTooltip(ann, e) { |
| 171 | var target = e.target || e.srcElement; |
nothing calls this directly
no test coverage detected