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

add basic dlna server browsing

This commit is contained in:
Luke Pulverenti 2014-04-18 01:03:01 -04:00
parent af093d1752
commit aa5f5fd65a
7 changed files with 175 additions and 36 deletions

View file

@ -290,7 +290,7 @@
}
if (idleState == true) {
video.removeClass("cursor-inactive").addClass("cursor-active");
video.removeClass("cursor-inactive");
videoControls.removeClass("inactive").addClass("active");
}
@ -298,7 +298,7 @@
timeout = window.setTimeout(function () {
idleState = true;
video.removeClass("cursor-active").addClass("cursor-inactive");
video.addClass("cursor-inactive");
videoControls.removeClass("active").addClass("inactive");
}, 4000);
}