lazy-loader-after.js 244 B

123456789
  1. /* global window, dispatchEvent, Element, UIEvent */
  2. (() => {
  3. Element.prototype.getBoundingClientRect = window._singleFile_getBoundingClientRect;
  4. delete window._singleFile_getBoundingClientRect;
  5. dispatchEvent(new UIEvent("scroll"));
  6. })();