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:
parent
606fdcb8df
commit
6e23623c28
1 changed files with 1 additions and 1 deletions
|
@ -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();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue