From e7fef7a9b26f4ea9dc63a6d6e8d5ee572a27319b Mon Sep 17 00:00:00 2001 From: Andrew Telnov Date: Mon, 19 Jul 2021 16:03:58 +0300 Subject: [PATCH] Fix the build, #3107 --- src/popup.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/popup.ts b/src/popup.ts index e69deeff7e..ce13d14f05 100644 --- a/src/popup.ts +++ b/src/popup.ts @@ -30,7 +30,6 @@ export class PopupModel extends Base { showPointer: boolean = true, isModal: boolean = false, onCancel = () => {}, - onCanApply = () => {return true}, onApply = () => {}, onHide = () => {}, onShow = () => {}, @@ -44,7 +43,6 @@ export class PopupModel extends Base { this.showPointer = showPointer; this.isModal = isModal; this.onCancel = onCancel; - this.onCanApply = onCanApply; this.onApply = onApply; this.onHide = onHide; this.onShow = onShow;