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

remove more reliance on ActiveService

This commit is contained in:
Luke Pulverenti 2015-03-12 11:51:48 -04:00
parent 920da071b8
commit 4f904fd8d8
4 changed files with 49 additions and 45 deletions

View file

@ -18,8 +18,6 @@
return '<option value="' + s.Name + '">' + s.Name + '</option>';
});
$('#selectActiveService', page).html(serviceOptions).val(config.ActiveService || '').selectmenu('refresh');
Dashboard.hideLoadingMsg();
}
@ -53,7 +51,6 @@
config.GuideDays = $('#selectGuideDays', form).val() || null;
config.ActiveService = $('#selectActiveService', form).val() || null;
ApiClient.updateNamedConfiguration("livetv", config).done(Dashboard.processServerConfigurationUpdateResult);
});