Tweaked the offset for the tooltip so that it is next to the element it is tipping

pull/21833/head
wmwragg 2016-07-22 11:31:26 +01:00
parent 922bb0f402
commit ca75d93434
1 changed files with 1 additions and 1 deletions

View File

@ -270,7 +270,7 @@ module.exports = React.createClass({
_repositionTooltip: function(e) { _repositionTooltip: function(e) {
if (this.tooltip && this.tooltip.parentElement) { if (this.tooltip && this.tooltip.parentElement) {
var scroll = ReactDOM.findDOMNode(this); var scroll = ReactDOM.findDOMNode(this);
this.tooltip.style.top = (70 + scroll.parentElement.offsetTop + this.tooltip.parentElement.offsetTop - this._getScrollNode().scrollTop) + "px"; this.tooltip.style.top = (3 + scroll.parentElement.offsetTop + this.tooltip.parentElement.offsetTop - this._getScrollNode().scrollTop) + "px";
} }
}, },