Improve handling of null values from caretRangeFromPoint
This commit is contained in:
parent
ba972d8547
commit
dd52a1c01a
@ -85,20 +85,18 @@ function docRangeFromPoint(point) {
|
||||
range.setEnd(position.offsetNode, position.offset);
|
||||
return range;
|
||||
}
|
||||
return null;
|
||||
};
|
||||
}
|
||||
|
||||
const range = document.caretRangeFromPoint(point.x, point.y);
|
||||
if (range === null) {
|
||||
return;
|
||||
}
|
||||
|
||||
if(imposter !== null) imposter.style.zIndex = -2147483646;
|
||||
|
||||
let rects;
|
||||
try {
|
||||
rects = range.getClientRects();
|
||||
}
|
||||
catch (e) {
|
||||
return;
|
||||
}
|
||||
const rects = range.getClientRects();
|
||||
|
||||
if (rects.length === 0) {
|
||||
return;
|
||||
|
Loading…
Reference in New Issue
Block a user