zulip/frontend_tests/zjsunit/zjquery_event.js

13 lines
212 B
JavaScript
Raw Normal View History

"use strict";
class FakeEvent {
constructor(type, props) {
this.type = type;
Object.assign(this, props);
}
preventDefault() {}
stopPropagation() {}
}
module.exports = FakeEvent;