(e)
| 3033 | else e.returnValue = false; |
| 3034 | } |
| 3035 | function e_stopPropagation(e) { |
| 3036 | if (e.stopPropagation) e.stopPropagation(); |
| 3037 | else e.cancelBubble = true; |
| 3038 | } |
| 3039 | function e_stop(e) {e_preventDefault(e); e_stopPropagation(e);} |
| 3040 | CodeMirror.e_stop = e_stop; |
| 3041 | CodeMirror.e_preventDefault = e_preventDefault; |
no outgoing calls
no test coverage detected