Clicking on the CW text should expand the status (#3855)

This commit is contained in:
unarist 2017-06-20 08:34:10 +09:00 committed by Eugen Rochko
parent aa58cca040
commit bf8c2c4348
1 changed files with 1 additions and 1 deletions

View File

@ -81,7 +81,7 @@ class StatusContent extends React.PureComponent {
const [ startX, startY ] = this.startXY;
const [ deltaX, deltaY ] = [Math.abs(e.clientX - startX), Math.abs(e.clientY - startY)];
if (e.target.localName === 'button' || e.target.localName === 'span' || e.target.localName === 'a' || (e.target.parentNode && e.target.parentNode.localName === 'a')) {
if (e.target.localName === 'button' || e.target.localName === 'a' || (e.target.parentNode && (e.target.parentNode.localName === 'button' || e.target.parentNode.localName === 'a'))) {
return;
}