fix merge conflict
This commit is contained in:
parent
f2da76daaf
commit
300dc660e9
1 changed files with 3 additions and 4 deletions
|
|
@ -95,10 +95,9 @@ function GutterHandler(mouseHandler) {
|
|||
} else {
|
||||
var gutterElement = gutter.$cells[row].element;
|
||||
var rect = gutterElement.getBoundingClientRect();
|
||||
var tooltipLeft = rect.right;
|
||||
var tooltipTop = rect.bottom;
|
||||
tooltip.style.left = tooltipLeft + "px";
|
||||
tooltip.style.top = tooltipTop - 5 + "px";
|
||||
var style = tooltip.getElement().style;
|
||||
style.left = rect.right + "px";
|
||||
style.top = rect.bottom + "px";
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue