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

Hide progress bar when playing theme media

This commit is contained in:
Mister Rajoy 2020-11-02 02:36:07 +01:00
parent 2552e7b10c
commit a7c4be105d
2 changed files with 2 additions and 0 deletions

View file

@ -41,6 +41,7 @@
- [Cromefire_](https://github.com/cromefire) - [Cromefire_](https://github.com/cromefire)
- [Orry Verducci](https://github.com/orryverducci) - [Orry Verducci](https://github.com/orryverducci)
- [Camc314](https://github.com/camc314) - [Camc314](https://github.com/camc314)
- [danieladov](https://github.com/danieladov)
# Emby Contributors # Emby Contributors

View file

@ -27,6 +27,7 @@ function playThemeMedia(items, ownerId) {
}).then(function () { }).then(function () {
currentOwnerId = ownerId; currentOwnerId = ownerId;
}); });
document.getElementsByClassName("nowPlayingBarTop")[0].style.display = "none";
} else { } else {
stopIfPlaying(); stopIfPlaying();
} }