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:
parent
718faac423
commit
8e8fb1d988
1 changed files with 1 additions and 1 deletions
|
@ -617,7 +617,7 @@ export default function (options) {
|
||||||
*/
|
*/
|
||||||
function startHideTimer() {
|
function startHideTimer() {
|
||||||
stopHideTimer();
|
stopHideTimer();
|
||||||
hideTimeout = setTimeout(hideOsd, 3000);
|
hideTimeout = setTimeout(hideOsd, 7000);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue