1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00

Fix more icons on WebOS

This commit is contained in:
MrTimscampi 2020-02-16 01:53:29 +01:00
parent 60f990052f
commit 229785b908
2 changed files with 4 additions and 4 deletions

View file

@ -102,11 +102,11 @@ define(['events', 'playbackManager', 'dom', 'browser', 'css!./iconosd', 'materia
if (iconElement) {
if (brightness >= 80) {
iconElement.innerHTML = 'brightness_high';
iconElement.innerHTML = '';
} else if (brightness >= 20) {
iconElement.innerHTML = 'brightness_medium';
iconElement.innerHTML = '';
} else {
iconElement.innerHTML = 'brightness_low';
iconElement.innerHTML = '';
}
}
if (progressElement) {