diff --git a/dashboard-ui/musicvideos.html b/dashboard-ui/musicvideos.html
deleted file mode 100644
index 4ea2903612..0000000000
--- a/dashboard-ui/musicvideos.html
+++ /dev/null
@@ -1,156 +0,0 @@
-
-
-
-
Emby
-
-
-
-
-
diff --git a/dashboard-ui/scripts/itemdetailpage.js b/dashboard-ui/scripts/itemdetailpage.js
index b3701a6563..175fae599f 100644
--- a/dashboard-ui/scripts/itemdetailpage.js
+++ b/dashboard-ui/scripts/itemdetailpage.js
@@ -75,6 +75,8 @@
Backdrops.setBackdrops(page, [item]);
}
else {
+ //$('#itemBackdrop', page).addClass('noBackdrop').css('background-image', 'none');
+ //Backdrops.setBackdrops(page, [item]);
hasBackdrop = LibraryBrowser.renderDetailPageBackdrop(page, item);
}
diff --git a/dashboard-ui/scripts/musicvideos.js b/dashboard-ui/scripts/musicvideos.js
deleted file mode 100644
index d07f97f435..0000000000
--- a/dashboard-ui/scripts/musicvideos.js
+++ /dev/null
@@ -1,210 +0,0 @@
-(function ($, document) {
-
- var view = LibraryBrowser.getDefaultItemsView('Poster', 'PosterCard');
-
- // The base query options
- var query = {
-
- SortBy: "SortName",
- SortOrder: "Ascending",
- IncludeItemTypes: "MusicVideo",
- Recursive: true,
- Fields: "DateCreated,SyncInfo",
- StartIndex: 0
- };
-
- function getSavedQueryKey() {
-
- return 'musicvideos' + (query.ParentId || '');
- }
-
- function reloadItems(page) {
-
- Dashboard.showLoadingMsg();
-
- ApiClient.getItems(Dashboard.getCurrentUserId(), query).done(function (result) {
-
- // Scroll back up so they can see the results from the beginning
- window.scrollTo(0, 0);
-
- var html = '';
-
- $('.listTopPaging', page).html(LibraryBrowser.getQueryPagingHtml({
- startIndex: query.StartIndex,
- limit: query.Limit,
- totalRecordCount: result.TotalRecordCount,
- viewButton: true,
- showLimit: false
- })).trigger('create');
-
- updateFilterControls(page);
-
- if (view == "Poster") {
- html = LibraryBrowser.getPosterViewHtml({
- items: result.Items,
- shape: "square",
- context: 'music',
- showTitle: true,
- lazy: true,
- centerText: true,
- showDetailsMenu: true
- });
- }
- else if (view == "PosterCard") {
-
- html = LibraryBrowser.getPosterViewHtml({
- items: result.Items,
- shape: "square",
- context: 'music',
- showTitle: true,
- centerText: true,
- cardLayout: true,
- lazy: true,
- showParentTitle: true,
- showDetailsMenu: true
- });
- }
-
- var elem = page.querySelector('#items');
- elem.innerHTML = html;
- ImageLoader.lazyChildren(elem);
-
- $('.btnNextPage', page).on('click', function () {
- query.StartIndex += query.Limit;
- reloadItems(page);
- });
-
- $('.btnPreviousPage', page).on('click', function () {
- query.StartIndex -= query.Limit;
- reloadItems(page);
- });
-
- LibraryBrowser.saveQueryValues(getSavedQueryKey(), query);
-
- Dashboard.hideLoadingMsg();
- });
- }
-
- function updateFilterControls(page) {
-
- // Reset form values using the last used query
- $('.radioSortBy', page).each(function () {
-
- this.checked = (query.SortBy || '').toLowerCase() == this.getAttribute('data-sortby').toLowerCase();
-
- }).checkboxradio('refresh');
-
- $('.radioSortOrder', page).each(function () {
-
- this.checked = (query.SortOrder || '').toLowerCase() == this.getAttribute('data-sortorder').toLowerCase();
-
- }).checkboxradio('refresh');
-
- $('.chkStandardFilter', page).each(function () {
-
- var filters = "," + (query.Filters || "");
- var filterName = this.getAttribute('data-filter');
-
- this.checked = filters.indexOf(',' + filterName) != -1;
-
- }).checkboxradio('refresh');
-
- $('.alphabetPicker', page).alphaValue(query.NameStartsWithOrGreater);
- $('#selectPageSize', page).val(query.Limit).selectmenu('refresh');
- }
-
- var filtersLoaded;
- function reloadFiltersIfNeeded(page) {
-
- if (!filtersLoaded) {
-
- filtersLoaded = true;
-
- QueryFilters.loadFilters(page, Dashboard.getCurrentUserId(), query, function () {
-
- reloadItems(page);
- });
- }
- }
-
- $(document).on('pageinit', "#musicVideosPage", function () {
-
- var page = this;
-
- $('.viewPanel', page).on('panelopen', function () {
-
- reloadFiltersIfNeeded(page);
- });
-
- $('.radioSortBy', this).on('click', function () {
- query.StartIndex = 0;
- query.SortBy = this.getAttribute('data-sortby');
- reloadItems(page);
- });
-
- $('.radioSortOrder', this).on('click', function () {
- query.StartIndex = 0;
- query.SortOrder = this.getAttribute('data-sortorder');
- reloadItems(page);
- });
-
- $('.chkStandardFilter', this).on('change', function () {
-
- var filterName = this.getAttribute('data-filter');
- var filters = query.Filters || "";
-
- filters = (',' + filters).replace(',' + filterName, '').substring(1);
-
- if (this.checked) {
- filters = filters ? (filters + ',' + filterName) : filterName;
- }
-
- query.StartIndex = 0;
- query.Filters = filters;
-
- reloadItems(page);
- });
-
- $('.alphabetPicker', this).on('alphaselect', function (e, character) {
-
- query.NameStartsWithOrGreater = character;
- query.StartIndex = 0;
-
- reloadItems(page);
-
- }).on('alphaclear', function (e) {
-
- query.NameStartsWithOrGreater = '';
-
- reloadItems(page);
- });
-
- $('#selectPageSize', page).on('change', function () {
- query.Limit = parseInt(this.value);
- query.StartIndex = 0;
- reloadItems(page);
- });
-
- }).on('pagebeforeshow', "#musicVideosPage", function () {
-
- var page = this;
-
- query.ParentId = LibraryMenu.getTopParentId();
-
- 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;
- }
-
- LibraryBrowser.loadSavedQueryValues(getSavedQueryKey(), query);
- QueryFilters.onPageShow(page, query);
-
- reloadItems(page);
-
- updateFilterControls(this);
- });
-
-})(jQuery, document);
\ No newline at end of file
diff --git a/dashboard-ui/songs.html b/dashboard-ui/songs.html
index e0262683ec..aa0be07c70 100644
--- a/dashboard-ui/songs.html
+++ b/dashboard-ui/songs.html
@@ -12,7 +12,6 @@
${TabArtists}
${TabSongs}
${TabGenres}
-
${TabMusicVideos}