diff --git a/dashboard-ui/favoritetv.html b/dashboard-ui/favoritetv.html
new file mode 100644
index 0000000000..410dd03d72
--- /dev/null
+++ b/dashboard-ui/favoritetv.html
@@ -0,0 +1,51 @@
+
+
+
+
+
+
diff --git a/dashboard-ui/itembynamedetails.html b/dashboard-ui/itembynamedetails.html
index 798b1a7b51..2b8b17a483 100644
--- a/dashboard-ui/itembynamedetails.html
+++ b/dashboard-ui/itembynamedetails.html
@@ -46,6 +46,7 @@
diff --git a/dashboard-ui/scripts/favoritetv.js b/dashboard-ui/scripts/favoritetv.js
new file mode 100644
index 0000000000..c2dc1912e3
--- /dev/null
+++ b/dashboard-ui/scripts/favoritetv.js
@@ -0,0 +1,140 @@
+(function ($, document) {
+
+ var shape = "poster";
+
+ // The base query options
+ var query = {
+
+ SortBy: "SortName",
+ SortOrder: "Ascending",
+ IncludeItemTypes: "Series",
+ Recursive: true,
+ Fields: "DisplayMediaType,SeriesInfo,ItemCounts,DateCreated,UserData",
+ StartIndex: 0,
+ Filters: "IsFavorite"
+ };
+
+ 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
+ $(document).scrollTop(0);
+
+ var html = '';
+
+ $('.listTopPaging', page).html(LibraryBrowser.getPagingHtml(query, result.TotalRecordCount, true)).trigger('create');
+
+ html += LibraryBrowser.getPosterDetailViewHtml({
+ items: result.Items,
+ context: "tv",
+ shape: shape
+ });
+
+ html += LibraryBrowser.getPagingHtml(query, result.TotalRecordCount);
+
+ $('#items', page).html(html).trigger('create');
+
+ $('.selectPage', page).on('change', function () {
+ query.StartIndex = (parseInt(this.value) - 1) * query.Limit;
+ reloadItems(page);
+ });
+
+ $('.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);
+ });
+
+ Dashboard.hideLoadingMsg();
+ });
+ }
+
+ $(document).on('pageinit', "#favoriteTvPage", function () {
+
+ var page = this;
+
+ $('.btnFavoriteType', page).on('click', function () {
+
+ $('.favoriteTypes .ui-btn-active', page).removeClass('ui-btn-active');
+ $(this).addClass('ui-btn-active');
+
+ });
+
+ $('.btnFavoriteSeries', page).on('click', function () {
+
+ shape = "poster";
+ query.IncludeItemTypes = "Series";
+ reloadItems(page);
+ });
+
+ $('.btnFavoriteSeasons', page).on('click', function () {
+
+ shape = "poster";
+ query.IncludeItemTypes = "Season";
+ reloadItems(page);
+ });
+
+ $('.btnFavoriteEpisodes', page).on('click', function () {
+
+ shape = "backdrop";
+ query.IncludeItemTypes = "Episode";
+ reloadItems(page);
+ });
+
+ $('.btnFavoriteSeries', page).on('click', function () {
+
+ query.IncludeItemTypes = "Series";
+ reloadItems(page);
+ });
+
+ $('#chkIncludeLikes', page).on('change', function () {
+
+ query.Filters = this.checked ? "IsFavoriteOrLikes" : "IsFavorite";
+ reloadItems(page);
+ });
+
+ $('.alphabetPicker', page).on('alphaselect', function (e, character) {
+
+ query.NameStartsWithOrGreater = character;
+ query.StartIndex = 0;
+
+ reloadItems(page);
+
+ }).on('alphaclear', function (e) {
+
+ query.NameStartsWithOrGreater = '';
+
+ reloadItems(page);
+ });
+
+ }).on('pagebeforeshow', "#favoriteTvPage", function () {
+
+ 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(this);
+
+ }).on('pageshow', "#favoriteTvPage", function () {
+
+ $('.alphabetPicker', this).alphaValue(query.NameStartsWith);
+ });
+
+})(jQuery, document);
\ No newline at end of file
diff --git a/dashboard-ui/tvgenres.html b/dashboard-ui/tvgenres.html
index 85a26a80a0..6bd09334c3 100644
--- a/dashboard-ui/tvgenres.html
+++ b/dashboard-ui/tvgenres.html
@@ -12,6 +12,7 @@
Genres
Actors
Networks
+
Favorites