Bugfix: don't cache the read avatar rect as it's relative to the viewport and it will move when we scroll!

pull/404/head
David Baker 2015-11-20 16:01:51 +00:00
parent 6dc5dd4930
commit 2c51a5c199
1 changed files with 3 additions and 3 deletions

View File

@ -71,7 +71,7 @@ module.exports = React.createClass({
},
componentDidUpdate: function() {
this.readAvatarRect = ReactDom.findDOMNode(this.readAvatarNode).getBoundingClientRect();
this.readAvatarNode = ReactDom.findDOMNode(this.readAvatarNode);
},
onEditClicked: function(e) {
@ -136,8 +136,8 @@ module.exports = React.createClass({
oldNodeTop = oldAvatarDomNode.getBoundingClientRect().top;
}
if (this.readAvatarRect) {
var topOffset = oldNodeTop - this.readAvatarRect.top;
if (this.readAvatarNode) {
var topOffset = oldNodeTop - this.readAvatarNode.getBoundingClientRect().top;
if (oldAvatarDomNode && oldAvatarDomNode.style.left !== '0px') {
var leftOffset = oldAvatarDomNode.style.left;