This commit is contained in:
Mirco Wittrien 2019-11-13 13:44:05 +01:00
parent d74e5a047d
commit 239cfa01d4
2 changed files with 2 additions and 2 deletions

View File

@ -7351,7 +7351,7 @@ var BDFDB = {
child.props.onMouseLeave = (e, childthis) => {
shown = false;
if (typeof this.props.onMouseLeave == "function") this.props.onMouseLeave(e, this);
if (typeof childMouseLeave == "function") child.props.onMouseLeave(e, childthis);
if (typeof childMouseLeave == "function") childMouseLeave(e, childthis);
};
child.props.onClick = (e, childthis) => {
if (typeof this.props.onClick == "function") this.props.onClick(e, this);

File diff suppressed because one or more lines are too long