Skip to content
This repository was archived by the owner on Mar 9, 2023. It is now read-only.

Commit bc62428

Browse files
committed
fix: do not reinsert same image
1 parent 99216a1 commit bc62428

File tree

1 file changed

+19
-19
lines changed

1 file changed

+19
-19
lines changed

jehon-image-loading.js

+19-19
Original file line numberDiff line numberDiff line change
@@ -88,26 +88,26 @@ export default class JehonImageLoading extends HTMLElement {
8888
* @returns {JehonImageLoading} for chaining
8989
*/
9090
loadAndDisplayImage(url, whenReady = true) {
91-
if (url == this.#currentURL) {
92-
return;
93-
}
94-
this.#currentURL = url;
95-
96-
const el = document.createElement('img');
97-
el.setAttribute('src', url);
98-
el.setAttribute('loading', 1);
99-
this.shadowRoot.appendChild(el);
100-
101-
el.addEventListener('load', () => {
102-
this.shadowRoot.querySelectorAll('img:not([loading])').forEach(img => img.remove());
103-
el.removeAttribute('loading');
104-
this.dispatchEvent(new CustomEvent('load', { detail: url }));
105-
});
106-
107-
if (!whenReady) {
108-
// Simulate that we are ready
109-
el.dispatchEvent(new Event('load'));
91+
if (url != this.#currentURL) {
92+
this.#currentURL = url;
93+
94+
const el = document.createElement('img');
95+
el.setAttribute('src', url);
96+
el.setAttribute('loading', 1);
97+
this.shadowRoot.appendChild(el);
98+
99+
el.addEventListener('load', () => {
100+
this.shadowRoot.querySelectorAll('img:not([loading])').forEach(img => img.remove());
101+
el.removeAttribute('loading');
102+
this.dispatchEvent(new CustomEvent('load', { detail: url }));
103+
});
104+
105+
if (!whenReady) {
106+
// Simulate that we are ready
107+
el.dispatchEvent(new Event('load'));
108+
}
110109
}
110+
111111
return this;
112112
}
113113
}

0 commit comments

Comments
 (0)