Upon loading page, quickly scroll down to the lazy load example and wait until that image loads. When you scroll back up, the other images will fail to load. The in view is called initially but onload is never called.
Temporary solution: moving this.$imageNode.off('inview'); inside onload and onerror solves it with chrome.
Upon loading page, quickly scroll down to the lazy load example and wait until that image loads. When you scroll back up, the other images will fail to load. The in view is called initially but onload is never called.
Temporary solution: moving
this.$imageNode.off('inview');
inside onload and onerror solves it with chrome.