Move variables out of state.
parent
700515cce3
commit
e3a3dec8a2
|
@ -43,11 +43,7 @@ module.exports = React.createClass({
|
|||
document.body.appendChild(this.tooltipContainer);
|
||||
window.addEventListener('scroll', this._renderTooltip, true);
|
||||
|
||||
const parent = ReactDOM.findDOMNode(this).parentNode;
|
||||
this.state={
|
||||
parent,
|
||||
parentBox: parent.getBoundingClientRect(),
|
||||
};
|
||||
this.parent = ReactDOM.findDOMNode(this).parentNode;
|
||||
|
||||
this._renderTooltip();
|
||||
},
|
||||
|
@ -70,7 +66,7 @@ module.exports = React.createClass({
|
|||
},
|
||||
|
||||
_updatePosition(style) {
|
||||
const parentBox = this.state.parent.getBoundingClientRect();
|
||||
const parentBox = this.parent.getBoundingClientRect();
|
||||
let offset = 0;
|
||||
if (parentBox.height > MIN_TOOLTIP_HEIGHT) {
|
||||
offset = Math.floor((parentBox.height - MIN_TOOLTIP_HEIGHT) / 2);
|
||||
|
@ -120,5 +116,5 @@ module.exports = React.createClass({
|
|||
<div className={this.props.className} >
|
||||
</div>
|
||||
);
|
||||
}
|
||||
},
|
||||
});
|
||||
|
|
Loading…
Reference in New Issue