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

Commit e0b69e0

Browse files
committed
fix: waiting time is ms
1 parent 0b7c9b9 commit e0b69e0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

jehon-image-loading.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ export default class JehonImageLoading extends HTMLElement {
124124
el.removeAttribute('loading');
125125

126126
// Wait for animation to end
127-
await sleep(Math.max(JehonImageLoading.#transitionTimeMs, 0.001));
127+
await sleep(Math.max(JehonImageLoading.#transitionTimeMs, 1));
128128

129129
this.shadowRoot.querySelectorAll('img:not([loading]):not(:last-of-type)')
130130
.forEach(img => img.remove());

0 commit comments

Comments
 (0)