From b87f089290a86541cf6cd34f0d1b43988be18a3c Mon Sep 17 00:00:00 2001 From: MattMo Date: Tue, 4 May 2021 22:17:23 -0700 Subject: [PATCH] Lazy load now only runs once and stops. --- ignite-html-lazyload.js | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/ignite-html-lazyload.js b/ignite-html-lazyload.js index 18241e0..fddce56 100644 --- a/ignite-html-lazyload.js +++ b/ignite-html-lazyload.js @@ -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; + } }); }