diff --git a/dashboard-ui/bower_components/paper-ripple/.bower.json b/dashboard-ui/bower_components/paper-ripple/.bower.json index 0cbf50c9ff..93d8b8c843 100644 --- a/dashboard-ui/bower_components/paper-ripple/.bower.json +++ b/dashboard-ui/bower_components/paper-ripple/.bower.json @@ -26,14 +26,14 @@ "web-component-tester": "*", "webcomponentsjs": "webcomponents/webcomponentsjs#^0.7.0" }, - "homepage": "https://github.com/polymerelements/paper-ripple", + "homepage": "https://github.com/PolymerElements/paper-ripple", "_release": "1.0.1", "_resolution": { "type": "version", "tag": "v1.0.1", "commit": "af19d904802437c305390bb03415c11661de3d0a" }, - "_source": "git://github.com/polymerelements/paper-ripple.git", + "_source": "git://github.com/PolymerElements/paper-ripple.git", "_target": "^1.0.0", - "_originalSource": "polymerelements/paper-ripple" + "_originalSource": "PolymerElements/paper-ripple" } \ No newline at end of file diff --git a/dashboard-ui/musicalbumartists.html b/dashboard-ui/musicalbumartists.html index a65616cfe9..c4a9ec01c5 100644 --- a/dashboard-ui/musicalbumartists.html +++ b/dashboard-ui/musicalbumartists.html @@ -12,7 +12,6 @@ ${TabArtists} ${TabSongs} ${TabGenres} - ${TabMusicVideos}
diff --git a/dashboard-ui/musicalbums.html b/dashboard-ui/musicalbums.html index 7452210774..1a7b1ff0bd 100644 --- a/dashboard-ui/musicalbums.html +++ b/dashboard-ui/musicalbums.html @@ -12,7 +12,6 @@ ${TabArtists} ${TabSongs} ${TabGenres} - ${TabMusicVideos}
diff --git a/dashboard-ui/musicartists.html b/dashboard-ui/musicartists.html index 63ef2c84fd..9fb2b0ac58 100644 --- a/dashboard-ui/musicartists.html +++ b/dashboard-ui/musicartists.html @@ -12,7 +12,6 @@ ${TabArtists} ${TabSongs} ${TabGenres} - ${TabMusicVideos}
diff --git a/dashboard-ui/musicgenres.html b/dashboard-ui/musicgenres.html index d5e69573e1..3aba2fbd72 100644 --- a/dashboard-ui/musicgenres.html +++ b/dashboard-ui/musicgenres.html @@ -12,7 +12,6 @@ ${TabArtists} ${TabSongs} ${TabGenres} - ${TabMusicVideos}
diff --git a/dashboard-ui/musicrecommended.html b/dashboard-ui/musicrecommended.html index be0967b32a..ed55bbb729 100644 --- a/dashboard-ui/musicrecommended.html +++ b/dashboard-ui/musicrecommended.html @@ -12,7 +12,6 @@ ${TabArtists} ${TabSongs} ${TabGenres} - ${TabMusicVideos}
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 - - -
- - - -
-
-
-
-
-
-
-
-
- -
-
- - - -
- -
- - -
- -
-
-
- - ${HeaderFilters} - - - - - - - - - - - - - - - - - - -
-
- -
-

${HeaderGenres}

- -
-
-
- -
-

${HeaderParentalRatings}

- -
-
-
- -
-

${HeaderTags}

- -
-
-
- -
-

${HeaderYears}

- -
-
-
- -
-
-
- - ${HeaderSortBy} - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - ${HeaderSortOrder} - - - - - - - -
-
-
-
-
- - 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}