update forms

This commit is contained in:
Luke Pulverenti 2016-02-16 14:58:42 -05:00
parent c9bb9cc40a
commit e6ded08848
5 changed files with 17 additions and 20 deletions

View file

@ -60,9 +60,9 @@
var tvOptions = config.TvOptions;
$('#chkEnableTvSorting', page).checked(tvOptions.IsEnabled).checkboxradio('refresh');
$('#chkOverwriteExistingEpisodes', page).checked(tvOptions.OverwriteExistingEpisodes).checkboxradio('refresh');
$('#chkDeleteEmptyFolders', page).checked(tvOptions.DeleteEmptyFolders).checkboxradio('refresh');
$('#chkEnableTvSorting', page).checked(tvOptions.IsEnabled);
$('#chkOverwriteExistingEpisodes', page).checked(tvOptions.OverwriteExistingEpisodes);
$('#chkDeleteEmptyFolders', page).checked(tvOptions.DeleteEmptyFolders);
$('#txtMinFileSize', page).val(tvOptions.MinFileSizeMb);
$('#txtSeasonFolderPattern', page).val(tvOptions.SeasonFolderPattern).trigger('change');

View file

@ -1767,8 +1767,8 @@ var AppInfo = {};
// Put the version into the bower path since we can't easily put a query string param on html imports
// Emby server will handle this
if (!Dashboard.isRunningInCordova()) {
//bowerPath += window.dashboardVersion;
if (Dashboard.isConnectMode() && !Dashboard.isRunningInCordova()) {
bowerPath += window.dashboardVersion;
}
return bowerPath;