Fix checkScroll after image load

Make the onImageLoad handler call checkScroll on the right thing. This was
originally done in commit 99d2392, but got broken in the Great RoomView
Refactor of February 2016.
This commit is contained in:
Richard van der Hoff 2016-03-07 22:23:14 +00:00
parent 606fdcb8df
commit 6e23623c28

View file

@ -331,7 +331,7 @@ module.exports = React.createClass({
// once images in the events load, make the scrollPanel check the // once images in the events load, make the scrollPanel check the
// scroll offsets. // scroll offsets.
_onImageLoad: function() { _onImageLoad: function() {
var scrollPanel = this.refs.messagePanel; var scrollPanel = this.refs.scrollPanel;
if (scrollPanel) { if (scrollPanel) {
scrollPanel.checkScroll(); scrollPanel.checkScroll();
} }