Resetting didn't like the new docs.

This commit is contained in:
Matt Mo 2021-08-25 00:00:26 -07:00
parent 15200f1438
commit 64d0a9bec6

View File

@ -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. * @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. * @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. //See if we have a src attribute already defined.
if (this._attributes["src"]) { if (this._attributes["src"]) {
//Save the original source. //Save the original source.
@ -103,5 +103,3 @@ function lazy(placeholder = null, callback = null) {
return this; return this;
} }
IgniteTemplate.prototype.lazy = lazy;