1
0
mirror of https://github.com/matrix-org/matrix-react-sdk.git synced 2025-07-24 06:02:08 +03:00

fix 'mark all read'

This commit is contained in:
Matthew Hodgson
2016-04-13 12:46:36 +01:00
parent 6509bc0589
commit 1e294cb10c

View File

@ -986,7 +986,8 @@ module.exports = React.createClass({
}, },
// update the read marker to match the read-receipt // update the read marker to match the read-receipt
forgetReadMarker: function() { forgetReadMarker: function(ev) {
ev.stopPropagation();
this.refs.messagePanel.forgetReadMarker(); this.refs.messagePanel.forgetReadMarker();
}, },