Do not expand toot when clicking on a poll option (#11067)

Fixes regression introduced by e9ddd5a159
This commit is contained in:
ThibG 2019-06-13 00:16:46 +02:00 committed by Eugen Rochko
parent 1b4dcc3f78
commit a4a502e85c
1 changed files with 6 additions and 2 deletions

View File

@ -107,8 +107,12 @@ export default 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 === 'a' || (e.target.parentNode && (e.target.parentNode.localName === 'button' || e.target.parentNode.localName === 'a'))) {
return;
let element = e.target;
while (element) {
if (element.localName === 'button' || element.localName === 'a' || element.localName === 'label') {
return;
}
element = element.parentNode;
}
if (deltaX + deltaY < 5 && e.button === 0 && this.props.onClick) {