(e)
| 2842 | CodeMirror.e_stopPropagation = e_stopPropagation; |
| 2843 | |
| 2844 | function e_target(e) {return e.target || e.srcElement;} |
| 2845 | function e_button(e) { |
| 2846 | if (e.which) return e.which; |
| 2847 | else if (e.button & 1) return 1; |
no outgoing calls
no test coverage detected