(ctor)
| 5564 | CodeMirror.on = on; CodeMirror.off = off; CodeMirror.signal = signal; |
| 5565 | |
| 5566 | function eventMixin(ctor) { |
| 5567 | ctor.prototype.on = function(type, f) {on(this, type, f);}; |
| 5568 | ctor.prototype.off = function(type, f) {off(this, type, f);}; |
| 5569 | } |
| 5570 | |
| 5571 | // MISC UTILITIES |
| 5572 |
no test coverage detected