zulip/frontend_tests/zjsunit/zjquery_event.js

16 lines
313 B
JavaScript
Raw Normal View History

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