This commit is contained in:
Mirco Wittrien 2019-10-24 12:04:03 +02:00
parent 4e0c452de1
commit 3da383570c
1 changed files with 2 additions and 2 deletions

View File

@ -5699,8 +5699,8 @@ var BDFDB = {myPlugins: BDFDB && BDFDB.myPlugins || {}, cleanUps: BDFDB && BDFDB
basePopoutIns.handleClick();
if (!basePopoutIns.nativeClose) {
basePopoutIns.nativeClose = basePopoutIns.close;
basePopoutIns.close = (...arguments) => {
basePopoutIns.nativeClose(...arguments);
basePopoutIns.close = (...args) => {
basePopoutIns.nativeClose(...args);
if (typeof this.props.onClose == "function") this.props.onClose(this);
}
}