| Current Path : /var/www/homesaver/www/bitrix/js/ui/text-editor/src/helpers/ |
| Current File : /var/www/homesaver/www/bitrix/js/ui/text-editor/src/helpers/get-selection-rect.js |
export function getSelectionRect(nativeSelection: Selection): DOMRect | null
{
let rect = nativeSelection.getRangeAt(0).getBoundingClientRect();
rect = rect && rect.top ? rect : nativeSelection.getRangeAt(0).getClientRects()[0];
if (!rect)
{
if (nativeSelection.anchorNode && nativeSelection.anchorNode.getBoundingClientRect)
{
rect = nativeSelection.anchorNode.getBoundingClientRect();
}
else
{
return null;
}
}
return rect;
}