tangled
alpha
login
or
join now
tokono.ma
/
diffuse
5
fork
atom
A music player that connects to your cloud/distributed storage.
5
fork
atom
overview
issues
4
pulls
pipelines
fix: artwork progress bar flash
Steven Vandevelde
3 days ago
e8f19de2
acb296cc
+1
-2
1 changed file
expand all
collapse all
unified
split
src
themes
blur
artwork-controller
element.js
+1
-2
src/themes/blur/artwork-controller/element.js
···
480
480
<!-- PROGRESS -->
481
481
482
482
<div class="progress" @click="${this.seek}">
483
483
-
<progress max="100" value="${(this.audio()?.progress() ??
484
484
-
0) * 100}"></progress>
483
483
+
<progress max="100" value="${(this.audio()?.loadingState() === "loaded" ? (this.audio()?.progress() ?? 0) : 0) * 100}"></progress>
485
484
<div class="timestamps">
486
485
<time datetime="${this.#time.value}">${this.#time.value}</time>
487
486
<time datetime="${this.#time.value}">${this.#duration