From 64d0a9bec61db2b545b0106325025a4a21a252c8 Mon Sep 17 00:00:00 2001 From: Matt Mo Date: Wed, 25 Aug 2021 00:00:26 -0700 Subject: [PATCH] Resetting didn't like the new docs. --- ignite-html-lazyload.js | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/ignite-html-lazyload.js b/ignite-html-lazyload.js index c879916..7998420 100644 --- a/ignite-html-lazyload.js +++ b/ignite-html-lazyload.js @@ -62,7 +62,7 @@ class IgniteLazyLoad { * @param {Function|IgniteProperty} callback The callback function to invoke once the image has been lazy loaded in. By default null. * @returns {IgniteTemplate} This ignite template. */ -function lazy(placeholder = null, callback = null) { + IgniteTemplate.prototype.lazy = function(placeholder = null, callback = null) { //See if we have a src attribute already defined. if (this._attributes["src"]) { //Save the original source. @@ -102,6 +102,4 @@ function lazy(placeholder = null, callback = null) { } return this; -} - -IgniteTemplate.prototype.lazy = lazy; \ No newline at end of file +} \ No newline at end of file