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

add one year tolerance to movie lookups

This commit is contained in:
Luke Pulverenti 2014-07-04 15:17:22 -04:00
parent 6ca0dc946c
commit eeafc46d94
6 changed files with 17 additions and 25 deletions

View file

@ -1158,12 +1158,7 @@
volumeSlider.val(initialVolume).slider('refresh');
updateVolumeButtons(initialVolume);
video.on("loadstart.mediaplayerevent", function (e) {
Dashboard.showLoadingMsg();
}).on("volumechange.mediaplayerevent", function (e) {
video.on("volumechange.mediaplayerevent", function (e) {
var vol = this.volume;
@ -1189,8 +1184,6 @@
}).on("playing.mediaplayerevent", function (e) {
Dashboard.hideLoadingMsg();
$('#video-playButton', videoControls).hide();
$('#video-pauseButton', videoControls).show();
$("#play", videoElement).show().addClass("fadeOut");