UNPKG

wix-style-react

Version:
36 lines (28 loc) 677 B
const createRangeOrig = document.createRange; const install = () => { if (!document.createRange) { document.createRange = () => { return (function() { const pub = {}; pub.setEnd = function(elem) { pub.commonAncestorContainer = elem; }; pub.setStart = function(elem) { pub.commonAncestorContainer = elem; }; pub.getBoundingClientRect = function() { return { right: 0 }; }; pub.getClientRects = () => []; return pub; })(); }; } }; const uninstall = () => { document.createRange = createRangeOrig; }; export default { install, uninstall, };