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

Update slideshow.js

Changed default 3 seconds slide hide function to 7 seconds. 3 seconds per slide as a default is very short and unreasonable value. Maybe in the future this can be implemented as a parameter.
This commit is contained in:
markster1700 2024-08-31 13:25:14 -06:00 committed by GitHub
parent 718faac423
commit 8e8fb1d988
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -617,7 +617,7 @@ export default function (options) {
*/
function startHideTimer() {
stopHideTimer();
hideTimeout = setTimeout(hideOsd, 3000);
hideTimeout = setTimeout(hideOsd, 7000);
}
/**