Lazy load now only runs once and stops.
This commit is contained in:
parent
a1946f171c
commit
b87f089290
@ -28,11 +28,11 @@ IgniteTemplate.prototype.lazy = function (placeholder = null) {
|
||||
|
||||
//Add an intersect event to this template.
|
||||
this.onIntersect(() => {
|
||||
//Move the original source into the attribute.
|
||||
this._attributes["src"] = this._lazy_src;
|
||||
|
||||
//Modify the attribute on the element directly.
|
||||
this.element.setAttribute("src", this._lazy_src);
|
||||
if (this._lazy_src) {
|
||||
this._attributes["src"] = this._lazy_src;
|
||||
this.element.setAttribute("src", this._lazy_src);
|
||||
this._lazy_src = null;
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user