Fix docRangeFromPoint sometimes not returning results

If range.getClientRects() has more than 1 result, it is possible that nothing will be returned even when hovering over a valid target.
This commit is contained in:
toasted-nutbread 2019-06-22 21:42:35 -04:00
parent f77ac32fe1
commit 542cdb2df9

View File

@ -97,18 +97,10 @@ function docRangeFromPoint(point) {
if(imposter !== null) imposter.style.zIndex = -2147483646;
const rects = range.getClientRects();
if (rects.length === 0) {
return;
}
const rect = rects[0];
if (point.y > rect.bottom + 2) {
return;
}
if (range) {
return new TextSourceRange(range);
for (const rect of rects) {
if (point.y <= rect.bottom + 2) {
return new TextSourceRange(range);
}
}
}