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

removed dead db fields

This commit is contained in:
Luke Pulverenti 2015-09-29 13:35:23 -04:00
parent 68e71b78db
commit 22a5e48860
4 changed files with 6 additions and 24 deletions

View file

@ -133,11 +133,6 @@
html += '<img src="css/images/editor/lock.png" style="width:18px"/>';
}
break;
case "UnidentifiedImage":
if (rRow.IsUnidentified) {
html += '<div class="libraryReportIndicator"><div class="ui-icon-alert ui-btn-icon-notext"></div></div>';
}
break;
case "TagsPrimaryImage":
if (!rRow.HasImageTagsPrimary) {
html += '<a href="edititemimages.html?id=' + rRow.Id + '"><img src="css/images/editor/missingprimaryimage.png" title="Missing primary image." style="width:18px"/></a>';
@ -175,9 +170,6 @@
if (rRow.HasLockData) {
html += '<img src="css/images/editor/lock.png" style="width:18px"/>';
}
if (rRow.IsUnidentified) {
html += '<div class="libraryReportIndicator"><div class="ui-icon-alert ui-btn-icon-notext"></div></div>';
}
if (!rRow.HasLocalTrailer && rRow.RowType === "Movie") {
html += '<img src="css/images/editor/missingtrailer.png" title="Missing local trailer." style="width:18px"/>';
@ -511,7 +503,6 @@
$('#chkMissingOverview', page).checked(query.HasOverview == false).checkboxradio('refresh');
$('#chkYearMismatch', page).checked(query.IsYearMismatched == true).checkboxradio('refresh');
$('#chkIsUnidentified', page).checked(query.IsUnidentified == true).checkboxradio('refresh');
$('#chkIsLocked', page).checked(query.IsLocked == true).checkboxradio('refresh');
//Episodes
@ -775,14 +766,6 @@
reloadItems(page);
});
$('#chkIsUnidentified', page).on('change', function () {
query.StartIndex = 0;
query.IsUnidentified = this.checked ? true : null;
reloadItems(page);
});
//Episodes
$('#chkMissingEpisode', page).on('change', function () {