Added callback function to lazy load plugin so templates can do things once the image has been lazy loaded.
This commit is contained in:
parent
4e61d215aa
commit
9e6dbed0c7
@ -59,9 +59,10 @@ class IgniteLazyLoad {
|
||||
/**
|
||||
* Lazy loads an image in the src attribute for this element.
|
||||
* @param {string|Function|IgniteProperty} placeholder The palceholder image to use before the image is loaded. If null, a default one will be used.
|
||||
* @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) {
|
||||
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.
|
||||
@ -88,6 +89,13 @@ IgniteTemplate.prototype.lazy = function (placeholder = null) {
|
||||
this._attributes["src"] = this._lazy_src;
|
||||
this.element.setAttribute("src", this._lazy_src);
|
||||
this._lazy_src = null;
|
||||
|
||||
//If we have a callback invoke it.
|
||||
if (callback instanceof IgniteProperty) {
|
||||
callback.value();
|
||||
} else if (callback instanceof Function) {
|
||||
callback();
|
||||
}
|
||||
}
|
||||
});
|
||||
});
|
||||
|
Loading…
x
Reference in New Issue
Block a user