2014-03-02 13:44:48 -07:00
|
|
|
|
(function ($, document, window) {
|
|
|
|
|
|
|
|
|
|
// The base query options
|
|
|
|
|
var query = {
|
|
|
|
|
|
|
|
|
|
SortBy: "SeriesSortName,SortName",
|
|
|
|
|
SortOrder: "Ascending",
|
|
|
|
|
Recursive: true,
|
2014-03-02 22:11:03 -07:00
|
|
|
|
Fields: "MediaStreams,DateCreated,Settings",
|
2014-03-02 19:17:12 -07:00
|
|
|
|
StartIndex: 0,
|
|
|
|
|
IncludeItemTypes: "Movie"
|
2014-03-02 13:44:48 -07:00
|
|
|
|
};
|
2014-03-02 22:11:03 -07:00
|
|
|
|
|
2014-03-02 19:17:12 -07:00
|
|
|
|
function getCodecName(stream) {
|
|
|
|
|
|
|
|
|
|
var val = stream.Codec || '';
|
|
|
|
|
val = val.toUpperCase();
|
2014-03-02 22:11:03 -07:00
|
|
|
|
|
2014-03-02 19:17:12 -07:00
|
|
|
|
if (val == 'DCA') {
|
|
|
|
|
return stream.Profile;
|
2014-03-02 13:44:48 -07:00
|
|
|
|
}
|
2014-03-02 19:17:12 -07:00
|
|
|
|
|
|
|
|
|
return val;
|
2014-03-02 13:44:48 -07:00
|
|
|
|
}
|
|
|
|
|
|
2014-03-02 22:11:03 -07:00
|
|
|
|
function getTableRowsHtml(items, includeParentInfo, includeSubtitles, includePlayers) {
|
2014-03-02 13:44:48 -07:00
|
|
|
|
|
|
|
|
|
var html = '';
|
|
|
|
|
|
|
|
|
|
for (var i = 0, length = items.length; i < length; i++) {
|
|
|
|
|
|
|
|
|
|
var item = items[i];
|
|
|
|
|
|
|
|
|
|
html += '<tr>';
|
|
|
|
|
|
|
|
|
|
html += '<td>';
|
2014-03-02 22:11:03 -07:00
|
|
|
|
|
|
|
|
|
if (item.LockData) {
|
|
|
|
|
html += '<img src="css/images/editor/lock.png" />';
|
|
|
|
|
}
|
2014-03-02 13:44:48 -07:00
|
|
|
|
if (item.IsUnidentified) {
|
|
|
|
|
html += '<div class="libraryReportIndicator"><div class="ui-icon-alert ui-btn-icon-notext"></div></div>';
|
|
|
|
|
}
|
|
|
|
|
html += '</td>';
|
|
|
|
|
|
2014-03-02 19:17:12 -07:00
|
|
|
|
if (includeParentInfo) {
|
|
|
|
|
html += '<td>';
|
|
|
|
|
if (item.SeriesName) {
|
|
|
|
|
html += '<a href="itemdetails.html?id=' + item.SeriesId + '">' + item.SeriesName + '</a>';
|
|
|
|
|
}
|
|
|
|
|
else if (item.Album) {
|
2014-03-02 22:11:03 -07:00
|
|
|
|
html += item.Album;
|
2014-03-02 19:17:12 -07:00
|
|
|
|
}
|
|
|
|
|
else if (item.AlbumArtist) {
|
2014-03-02 22:11:03 -07:00
|
|
|
|
html += item.AlbumArtist;
|
|
|
|
|
}
|
|
|
|
|
else if (item.GameSystem) {
|
|
|
|
|
html += item.GameSystem;
|
2014-03-02 19:17:12 -07:00
|
|
|
|
}
|
|
|
|
|
else {
|
|
|
|
|
html += ' ';
|
|
|
|
|
}
|
|
|
|
|
html += '</td>';
|
2014-03-02 13:44:48 -07:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
html += '<td>';
|
|
|
|
|
html += '<a href="' + LibraryBrowser.getHref(item) + '">' + LibraryBrowser.getPosterViewDisplayName(item, false, true) + '</a>';
|
|
|
|
|
html += '</td>';
|
|
|
|
|
|
|
|
|
|
html += '<td>';
|
2014-03-02 19:17:12 -07:00
|
|
|
|
if (item.DateCreated) {
|
|
|
|
|
try {
|
|
|
|
|
html += parseISO8601Date(item.DateCreated, { toLocal: true }).toLocaleDateString();
|
|
|
|
|
}
|
|
|
|
|
catch (e) {
|
|
|
|
|
html += ' ';
|
|
|
|
|
}
|
|
|
|
|
}
|
2014-03-02 13:44:48 -07:00
|
|
|
|
html += '</td>';
|
|
|
|
|
|
|
|
|
|
html += '<td>';
|
|
|
|
|
if (item.PremiereDate && item.Type != "Series") {
|
|
|
|
|
try {
|
|
|
|
|
var date = parseISO8601Date(item.PremiereDate, { toLocal: true });
|
|
|
|
|
|
|
|
|
|
html += date.toLocaleDateString();
|
|
|
|
|
}
|
|
|
|
|
catch (e) {
|
|
|
|
|
html += ' ';
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else if (item.ProductionYear) {
|
|
|
|
|
html += item.ProductionYear;
|
|
|
|
|
|
|
|
|
|
if (item.Status == "Continuing") {
|
|
|
|
|
html += "-Present";
|
|
|
|
|
}
|
|
|
|
|
else if (item.EndDate) {
|
|
|
|
|
|
|
|
|
|
try {
|
|
|
|
|
|
|
|
|
|
var endYear = parseISO8601Date(item.EndDate, { toLocal: true }).getFullYear();
|
|
|
|
|
|
|
|
|
|
if (endYear != item.ProductionYear) {
|
|
|
|
|
html += "-" + parseISO8601Date(item.EndDate, { toLocal: true }).getFullYear();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
catch (e) {
|
|
|
|
|
console.log("Error parsing date: " + item.EndDate);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
html += ' ';
|
|
|
|
|
}
|
|
|
|
|
html += '</td>';
|
|
|
|
|
|
|
|
|
|
html += '<td>';
|
|
|
|
|
html += item.OfficialRating || ' ';
|
|
|
|
|
html += '</td>';
|
|
|
|
|
|
|
|
|
|
html += '<td>';
|
|
|
|
|
|
|
|
|
|
if (item.RunTimeTicks) {
|
|
|
|
|
html += Dashboard.getDisplayTime(item.RunTimeTicks);
|
|
|
|
|
} else {
|
|
|
|
|
html += ' ';
|
|
|
|
|
}
|
|
|
|
|
html += '</td>';
|
|
|
|
|
|
2014-03-02 22:11:03 -07:00
|
|
|
|
if (includePlayers) {
|
|
|
|
|
html += '<td>';
|
|
|
|
|
html += item.Players || ' ';
|
|
|
|
|
html += '</td>';
|
|
|
|
|
}
|
|
|
|
|
|
2014-03-02 19:17:12 -07:00
|
|
|
|
html += '<td>';
|
2014-03-02 22:11:03 -07:00
|
|
|
|
html += (item.MediaStreams || []).filter(function (s) {
|
2014-03-02 19:17:12 -07:00
|
|
|
|
|
|
|
|
|
return s.Type != 'Subtitle';
|
|
|
|
|
|
|
|
|
|
}).map(getCodecName).filter(function (s) {
|
|
|
|
|
return s;
|
|
|
|
|
}).join('<br/>');
|
2014-03-02 22:11:03 -07:00
|
|
|
|
|
2014-03-02 19:17:12 -07:00
|
|
|
|
html += '</td>';
|
|
|
|
|
|
|
|
|
|
if (includeSubtitles) {
|
|
|
|
|
html += '<td>';
|
|
|
|
|
html += (item.MediaStreams || []).filter(function (s) {
|
|
|
|
|
|
|
|
|
|
return s.Type == 'Subtitle';
|
|
|
|
|
|
|
|
|
|
}).map(function (s) {
|
|
|
|
|
|
2014-03-02 22:11:03 -07:00
|
|
|
|
return (s.Language || 'und') + ' - ' + s.Codec;
|
2014-03-02 19:17:12 -07:00
|
|
|
|
|
|
|
|
|
}).join('<br/>');
|
|
|
|
|
|
|
|
|
|
html += '</td>';
|
|
|
|
|
}
|
|
|
|
|
|
2014-03-02 13:44:48 -07:00
|
|
|
|
html += '<td>';
|
|
|
|
|
if (item.SpecialFeatureCount == 1) {
|
|
|
|
|
|
|
|
|
|
html += '1 Special<br/>';
|
|
|
|
|
}
|
|
|
|
|
else if (item.SpecialFeatureCount) {
|
|
|
|
|
|
|
|
|
|
html += item.SpecialFeatureCount + ' Specials<br/>';
|
|
|
|
|
}
|
|
|
|
|
if (item.LocalTrailerCount == 1) {
|
|
|
|
|
|
|
|
|
|
html += '1 Trailer<br/>';
|
|
|
|
|
}
|
|
|
|
|
else if (item.LocalTrailerCount) {
|
|
|
|
|
|
|
|
|
|
html += item.LocalTrailerCount + ' Trailers<br/>';
|
|
|
|
|
}
|
|
|
|
|
html += '</td>';
|
|
|
|
|
|
|
|
|
|
html += '</tr>';
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return html;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function renderItems(page, result) {
|
|
|
|
|
|
|
|
|
|
// Scroll back up so they can see the results from the beginning
|
|
|
|
|
$(document).scrollTop(0);
|
|
|
|
|
|
|
|
|
|
$('.listTopPaging', page).html(LibraryBrowser.getPagingHtml(query, result.TotalRecordCount, true)).trigger('create');
|
|
|
|
|
|
|
|
|
|
updateFilterControls(page);
|
|
|
|
|
|
|
|
|
|
$('.listBottomPaging', page).html(LibraryBrowser.getPagingHtml(query, result.TotalRecordCount)).trigger('create');
|
|
|
|
|
|
2014-03-02 22:11:03 -07:00
|
|
|
|
var includeParentInfo = query.IncludeItemTypes == "Audio" || query.IncludeItemTypes == "MusicAlbum" || query.IncludeItemTypes == "Episode" || query.IncludeItemTypes == "Book" || query.IncludeItemTypes == "Game";
|
2014-03-02 19:17:12 -07:00
|
|
|
|
var includeSubtitles = query.IncludeItemTypes == "Movie" || query.IncludeItemTypes == "Trailer" || query.IncludeItemTypes == "Episode" || query.IncludeItemTypes == "AdultVideo" || query.IncludeItemTypes == "MusicVideo" || query.IncludeItemTypes == "Video";
|
2014-03-02 22:11:03 -07:00
|
|
|
|
var includePlayers = query.IncludeItemTypes == "Game";
|
2014-03-02 19:17:12 -07:00
|
|
|
|
|
|
|
|
|
if (includeParentInfo) {
|
|
|
|
|
|
|
|
|
|
var parentLabel = "Series";
|
2014-03-02 22:11:03 -07:00
|
|
|
|
|
2014-03-02 19:17:12 -07:00
|
|
|
|
if (query.IncludeItemTypes == "Audio") {
|
|
|
|
|
parentLabel = "Album";
|
|
|
|
|
}
|
|
|
|
|
else if (query.IncludeItemTypes == "MusicAlbum") {
|
|
|
|
|
parentLabel = "Artist";
|
|
|
|
|
}
|
2014-03-02 22:11:03 -07:00
|
|
|
|
else if (query.IncludeItemTypes == "Game") {
|
|
|
|
|
parentLabel = "Game System";
|
|
|
|
|
}
|
2014-03-02 19:17:12 -07:00
|
|
|
|
|
|
|
|
|
$('.thParent', page).html(parentLabel).show();
|
|
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
$('.thParent', page).hide();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (includeSubtitles) {
|
|
|
|
|
$('.thSubtitles', page).show();
|
|
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
$('.thSubtitles', page).hide();
|
|
|
|
|
}
|
|
|
|
|
|
2014-03-02 22:11:03 -07:00
|
|
|
|
if (includePlayers) {
|
|
|
|
|
$('.thPlayers', page).show();
|
|
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
$('.thPlayers', page).hide();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
var rowsHtml = getTableRowsHtml(result.Items, includeParentInfo, includeSubtitles, includePlayers);
|
2014-03-02 19:17:12 -07:00
|
|
|
|
$('.resultBody', page).html(rowsHtml).parents('.tblLibraryReport').table("refresh").trigger('create');
|
2014-03-02 13:44:48 -07:00
|
|
|
|
|
|
|
|
|
$('.btnNextPage', page).on('click', function () {
|
|
|
|
|
query.StartIndex += query.Limit;
|
|
|
|
|
reloadItems(page);
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
$('.btnPreviousPage', page).on('click', function () {
|
|
|
|
|
query.StartIndex -= query.Limit;
|
|
|
|
|
reloadItems(page);
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
$('.selectPageSize', page).on('change', function () {
|
|
|
|
|
query.Limit = parseInt(this.value);
|
|
|
|
|
query.StartIndex = 0;
|
|
|
|
|
reloadItems(page);
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function reloadItems(page) {
|
|
|
|
|
|
|
|
|
|
var url = ApiClient.getUrl("Items", query);
|
|
|
|
|
|
|
|
|
|
$.getJSON(url).done(function (result) {
|
|
|
|
|
|
|
|
|
|
renderItems(page, result);
|
|
|
|
|
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function updateFilterControls(page) {
|
|
|
|
|
|
2014-03-02 19:17:12 -07:00
|
|
|
|
$('#selectView').val(query.IncludeItemTypes).selectmenu('refresh');
|
2014-03-02 13:44:48 -07:00
|
|
|
|
|
|
|
|
|
$('.chkVideoTypeFilter', page).each(function () {
|
|
|
|
|
|
|
|
|
|
var filters = "," + (query.VideoTypes || "");
|
|
|
|
|
var filterName = this.getAttribute('data-filter');
|
|
|
|
|
|
|
|
|
|
this.checked = filters.indexOf(',' + filterName) != -1;
|
|
|
|
|
|
|
|
|
|
}).checkboxradio('refresh');
|
|
|
|
|
|
|
|
|
|
$('#chk3D', page).checked(query.Is3D == true).checkboxradio('refresh');
|
|
|
|
|
$('#chkHD', page).checked(query.IsHD == true).checkboxradio('refresh');
|
|
|
|
|
$('#chkSD', page).checked(query.IsHD == false).checkboxradio('refresh');
|
|
|
|
|
|
|
|
|
|
$('#chkSubtitle', page).checked(query.HasSubtitles == true).checkboxradio('refresh');
|
|
|
|
|
$('#chkTrailer', page).checked(query.HasTrailer == true).checkboxradio('refresh');
|
|
|
|
|
$('#chkSpecialFeature', page).checked(query.HasSpecialFeature == true).checkboxradio('refresh');
|
|
|
|
|
$('#chkThemeSong', page).checked(query.HasThemeSong == true).checkboxradio('refresh');
|
|
|
|
|
$('#chkThemeVideo', page).checked(query.HasThemeVideo == true).checkboxradio('refresh');
|
|
|
|
|
|
|
|
|
|
$('#chkMissingOverview', page).checked(query.HasOverview == false).checkboxradio('refresh');
|
|
|
|
|
$('#chkYearMismatch', page).checked(query.IsYearMismatched == true).checkboxradio('refresh');
|
2014-03-02 22:11:03 -07:00
|
|
|
|
|
|
|
|
|
$('#chkIsUnidentified', page).checked(query.IsUnidentified == true).checkboxradio('refresh');
|
|
|
|
|
$('#chkIsLocked', page).checked(query.IsLocked == true).checkboxradio('refresh');
|
2014-03-02 13:44:48 -07:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
$(document).on('pageinit', "#libraryReportPage", function () {
|
|
|
|
|
|
|
|
|
|
var page = this;
|
|
|
|
|
|
|
|
|
|
$('.libraryTree', page).on('itemclicked', function (event, data) {
|
|
|
|
|
|
|
|
|
|
if (data.itemType == "libraryreport") {
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (data.itemType == "livetvservice") {
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Dashboard.navigate('edititemmetadata.html?id=' + data.id);
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
$('#radioBasicFilters', page).on('change', function () {
|
|
|
|
|
|
|
|
|
|
if (this.checked) {
|
|
|
|
|
$('.basicFilters', page).show();
|
|
|
|
|
$('.advancedFilters', page).hide();
|
|
|
|
|
} else {
|
|
|
|
|
$('.basicFilters', page).hide();
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
$('#radioAdvancedFilters', page).on('change', function () {
|
|
|
|
|
|
|
|
|
|
if (this.checked) {
|
|
|
|
|
$('.advancedFilters', page).show();
|
|
|
|
|
$('.basicFilters', page).hide();
|
|
|
|
|
} else {
|
|
|
|
|
$('.advancedFilters', page).hide();
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
|
2014-03-02 19:17:12 -07:00
|
|
|
|
$('#selectView', page).on('change', function () {
|
2014-03-02 13:44:48 -07:00
|
|
|
|
|
|
|
|
|
query.StartIndex = 0;
|
2014-03-02 19:17:12 -07:00
|
|
|
|
query.IncludeItemTypes = this.value;
|
2014-03-02 13:44:48 -07:00
|
|
|
|
|
|
|
|
|
reloadItems(page);
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
$('.chkVideoTypeFilter', page).on('change', function () {
|
|
|
|
|
|
|
|
|
|
var filterName = this.getAttribute('data-filter');
|
|
|
|
|
var filters = query.VideoTypes || "";
|
|
|
|
|
|
|
|
|
|
filters = (',' + filters).replace(',' + filterName, '').substring(1);
|
|
|
|
|
|
|
|
|
|
if (this.checked) {
|
|
|
|
|
filters = filters ? (filters + ',' + filterName) : filterName;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
query.StartIndex = 0;
|
|
|
|
|
query.VideoTypes = filters;
|
|
|
|
|
|
|
|
|
|
reloadItems(page);
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
$('#chk3D', page).on('change', function () {
|
|
|
|
|
|
|
|
|
|
query.StartIndex = 0;
|
|
|
|
|
query.Is3D = this.checked ? true : null;
|
|
|
|
|
|
|
|
|
|
reloadItems(page);
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
$('#chkHD', page).on('change', function () {
|
|
|
|
|
|
|
|
|
|
query.StartIndex = 0;
|
|
|
|
|
query.IsHD = this.checked ? true : null;
|
|
|
|
|
|
|
|
|
|
reloadItems(page);
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
$('#chkSD', page).on('change', function () {
|
|
|
|
|
|
|
|
|
|
query.StartIndex = 0;
|
|
|
|
|
query.IsHD = this.checked ? false : null;
|
|
|
|
|
|
|
|
|
|
reloadItems(page);
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
$('#chkSubtitle', page).on('change', function () {
|
|
|
|
|
|
|
|
|
|
query.StartIndex = 0;
|
|
|
|
|
query.HasSubtitles = this.checked ? true : null;
|
|
|
|
|
|
|
|
|
|
reloadItems(page);
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
$('#chkTrailer', page).on('change', function () {
|
|
|
|
|
|
|
|
|
|
query.StartIndex = 0;
|
|
|
|
|
query.HasTrailer = this.checked ? true : null;
|
|
|
|
|
|
|
|
|
|
reloadItems(page);
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
$('#chkSpecialFeature', page).on('change', function () {
|
|
|
|
|
|
|
|
|
|
query.StartIndex = 0;
|
|
|
|
|
query.HasSpecialFeature = this.checked ? true : null;
|
|
|
|
|
|
|
|
|
|
reloadItems(page);
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
$('#chkThemeSong', page).on('change', function () {
|
|
|
|
|
|
|
|
|
|
query.StartIndex = 0;
|
|
|
|
|
query.HasThemeSong = this.checked ? true : null;
|
|
|
|
|
|
|
|
|
|
reloadItems(page);
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
$('#chkThemeVideo', page).on('change', function () {
|
|
|
|
|
|
|
|
|
|
query.StartIndex = 0;
|
|
|
|
|
query.HasThemeVideo = this.checked ? true : null;
|
|
|
|
|
|
|
|
|
|
reloadItems(page);
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
$('#chkMissingOverview', page).on('change', function () {
|
|
|
|
|
|
|
|
|
|
query.StartIndex = 0;
|
|
|
|
|
query.HasOverview = this.checked ? false : null;
|
|
|
|
|
|
|
|
|
|
reloadItems(page);
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
$('#chkYearMismatch', page).on('change', function () {
|
|
|
|
|
|
|
|
|
|
query.StartIndex = 0;
|
|
|
|
|
query.IsYearMismatched = this.checked ? true : null;
|
|
|
|
|
|
|
|
|
|
reloadItems(page);
|
|
|
|
|
});
|
|
|
|
|
|
2014-03-02 22:11:03 -07:00
|
|
|
|
$('#chkIsUnidentified', page).on('change', function () {
|
|
|
|
|
|
|
|
|
|
query.StartIndex = 0;
|
|
|
|
|
query.IsUnidentified = this.checked ? true : null;
|
|
|
|
|
|
|
|
|
|
reloadItems(page);
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
$('#chkIsLocked', page).on('change', function () {
|
|
|
|
|
|
|
|
|
|
query.StartIndex = 0;
|
|
|
|
|
query.IsLocked = this.checked ? true : null;
|
|
|
|
|
|
|
|
|
|
reloadItems(page);
|
|
|
|
|
});
|
|
|
|
|
|
2014-03-02 13:44:48 -07:00
|
|
|
|
}).on('pagebeforeshow', "#libraryReportPage", function () {
|
|
|
|
|
|
|
|
|
|
var page = this;
|
|
|
|
|
var limit = LibraryBrowser.getDefaultPageSize();
|
|
|
|
|
|
|
|
|
|
// If the default page size has changed, the start index will have to be reset
|
|
|
|
|
if (limit != query.Limit) {
|
|
|
|
|
query.Limit = limit;
|
|
|
|
|
query.StartIndex = 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
reloadItems(page);
|
|
|
|
|
|
|
|
|
|
}).on('pageshow', "#libraryReportPage", function () {
|
|
|
|
|
|
|
|
|
|
updateFilterControls(this);
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
})(jQuery, document, window);
|
|
|
|
|
|