Merge pull request #164 from toasted-nutbread/document-range-fix
Fix docRangeFromPoint sometimes not returning results
This commit is contained in:
commit
672eb55a20
@ -97,18 +97,10 @@ function docRangeFromPoint(point) {
|
|||||||
if(imposter !== null) imposter.style.zIndex = -2147483646;
|
if(imposter !== null) imposter.style.zIndex = -2147483646;
|
||||||
|
|
||||||
const rects = range.getClientRects();
|
const rects = range.getClientRects();
|
||||||
|
for (const rect of rects) {
|
||||||
if (rects.length === 0) {
|
if (point.y <= rect.bottom + 2) {
|
||||||
return;
|
return new TextSourceRange(range);
|
||||||
}
|
}
|
||||||
|
|
||||||
const rect = rects[0];
|
|
||||||
if (point.y > rect.bottom + 2) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (range) {
|
|
||||||
return new TextSourceRange(range);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user