Make Popup extend EventDispatcher for parity with PopupProxy (#746)

This commit is contained in:
toasted-nutbread 2020-08-22 14:35:29 -04:00 committed by GitHub
parent 1dc35dd6f1
commit bdb4c21a78
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -22,8 +22,9 @@
* dynamicLoader * dynamicLoader
*/ */
class Popup { class Popup extends EventDispatcher {
constructor(id, depth, frameId, ownerFrameId) { constructor(id, depth, frameId, ownerFrameId) {
super();
this._id = id; this._id = id;
this._depth = depth; this._depth = depth;
this._frameId = frameId; this._frameId = frameId;