This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
if(window.IntersectionObserver){ | |
const observe = function (entries, observer) { | |
entries.forEach(function(entry) { | |
if(entry.isIntersecting) { | |
const img = entry.target | |
const src = img.dataset.src | |
const srcset = img.dataset.srcset | |
requestIdleCallback(function () { | |
if(srcset) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-Dmaven.test.skip=true | |
-DskipTests=true |