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

fixes #583 - Add vote count to edit page

This commit is contained in:
Luke Pulverenti 2013-10-13 10:37:17 -04:00
parent 4c3748af0c
commit 504db16994
4 changed files with 7 additions and 6 deletions

View file

@ -13,7 +13,6 @@
load: function (page, config) {
$('#chkRefreshItemImages', page).checked(!config.RefreshItemImages).checkboxradio("refresh");
$('#txtNumbackdrops', page).val(config.MaxBackdrops);
$('#chkDownloadMovieArt', page).checked(config.DownloadMovieImages.Art).checkboxradio("refresh");
@ -54,7 +53,6 @@
ApiClient.getServerConfiguration().done(function (config) {
config.RefreshItemImages = !$('#chkRefreshItemImages', form).checked();
config.MaxBackdrops = $('#txtNumbackdrops', form).val();
config.DownloadMovieImages.Art = $('#chkDownloadMovieArt', form).checked();