Lazy load now only runs once and stops.

This commit is contained in:
MattMo 2021-05-04 22:17:23 -07:00
parent a1946f171c
commit b87f089290

View File

@ -28,11 +28,11 @@ IgniteTemplate.prototype.lazy = function (placeholder = null) {
//Add an intersect event to this template. //Add an intersect event to this template.
this.onIntersect(() => { this.onIntersect(() => {
//Move the original source into the attribute. if (this._lazy_src) {
this._attributes["src"] = this._lazy_src; this._attributes["src"] = this._lazy_src;
this.element.setAttribute("src", this._lazy_src);
//Modify the attribute on the element directly. this._lazy_src = null;
this.element.setAttribute("src", this._lazy_src); }
}); });
} }