Merge pull request #2999 from matrix-org/t3chguy/copied_tooltip

Close copy tooltip in edge cases correctly
pull/21833/head
Travis Ralston 2019-05-20 15:36:12 -06:00 committed by GitHub
commit 7979934b6d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 8 additions and 1 deletions

View File

@ -114,7 +114,8 @@ export default class ShareDialog extends React.Component {
top: y, top: y,
message: successful ? _t('Copied!') : _t('Failed to copy'), message: successful ? _t('Copied!') : _t('Failed to copy'),
}, false); }, false);
e.target.onmouseleave = close; // Drop a reference to this close handler for componentWillUnmount
this.closeCopiedTooltip = e.target.onmouseleave = close;
} }
onLinkSpecificEventCheckboxClick() { onLinkSpecificEventCheckboxClick() {
@ -131,6 +132,12 @@ export default class ShareDialog extends React.Component {
} }
} }
componentWillUnmount() {
// if the Copied tooltip is open then get rid of it, there are ways to close the modal which wouldn't close
// the tooltip otherwise, such as pressing Escape or clicking X really quickly
if (this.closeCopiedTooltip) this.closeCopiedTooltip();
}
render() { render() {
let title; let title;
let matrixToUrl; let matrixToUrl;