From 15200f1438598db2221c86d82bf409f1dfe41d38 Mon Sep 17 00:00:00 2001 From: Matt Mo Date: Tue, 24 Aug 2021 15:26:27 -0700 Subject: [PATCH] Changing docs to help VSCode detect extensions. --- ignite-html-lazyload.js | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/ignite-html-lazyload.js b/ignite-html-lazyload.js index 8b23e37..c879916 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. */ -IgniteTemplate.prototype.lazy = function (placeholder = null, callback = null) { +function lazy(placeholder = null, callback = null) { //See if we have a src attribute already defined. if (this._attributes["src"]) { //Save the original source. @@ -102,4 +102,6 @@ IgniteTemplate.prototype.lazy = function (placeholder = null, callback = null) { } return this; -}; \ No newline at end of file +} + +IgniteTemplate.prototype.lazy = lazy; \ No newline at end of file