Merge pull request #671 from matrix-org/dbkr/fix_read_receipt_unhide

Fix expanding/unexapnding read receipts
This commit is contained in:
Richard van der Hoff 2017-02-02 17:45:04 +00:00 committed by GitHub
commit e9a53a8957
2 changed files with 9 additions and 8 deletions

View file

@ -159,13 +159,14 @@ module.exports = React.createClass({
}
if (onClick != null) {
return (
<AccessibleButton className="mx_BaseAvatar" onClick={onClick}>
<img className="mx_BaseAvatar_image" src={imageUrl}
onError={this.onError}
width={width} height={height}
title={title} alt=""
{...otherProps} />
</AccessibleButton>
<AccessibleButton className="mx_BaseAvatar mx_BaseAvatar_image"
element='img'
src={imageUrl}
onClick={onClick}
onError={this.onError}
width={width} height={height}
title={title} alt=""
{...otherProps} />
);
} else {
return (

View file

@ -192,9 +192,9 @@ module.exports = React.createClass({
width={14} height={14} resizeMethod="crop"
style={style}
title={title}
onClick={this.props.onClick}
/>
</Velociraptor>
);
/* onClick={this.props.onClick} */
},
});