From 69c951cb3f3de74310e34440b4f00a87a9a2c5a9 Mon Sep 17 00:00:00 2001 From: Luke Pulverenti Date: Sat, 5 Dec 2015 16:44:51 -0500 Subject: [PATCH] update bower_components build process --- dashboard-ui/components/testermessage.js | 2 +- dashboard-ui/scripts/itemdetailpage.js | 32 ++++++++++++------------ dashboard-ui/scripts/site.js | 2 +- 3 files changed, 18 insertions(+), 18 deletions(-) diff --git a/dashboard-ui/components/testermessage.js b/dashboard-ui/components/testermessage.js index 813c7e895..0fda714b2 100644 --- a/dashboard-ui/components/testermessage.js +++ b/dashboard-ui/components/testermessage.js @@ -10,7 +10,7 @@ var settingsKey = "betatester"; - var expectedValue = new Date().toDateString() + "5"; + var expectedValue = new Date().toDateString() + "6"; if (appStorage.getItem(settingsKey) == expectedValue) { return; } diff --git a/dashboard-ui/scripts/itemdetailpage.js b/dashboard-ui/scripts/itemdetailpage.js index b83bd214c..4c8d05f1e 100644 --- a/dashboard-ui/scripts/itemdetailpage.js +++ b/dashboard-ui/scripts/itemdetailpage.js @@ -914,7 +914,7 @@ overlayText: true, lazy: true, showDetailsMenu: true, - overlayPlayButton: AppInfo.enableAppLayouts + overlayMoreButton: AppInfo.enableAppLayouts }); } else if (item.Type == "GameSystem") { @@ -1961,31 +1961,31 @@ }); } - pageIdOn('pageinit', "itemDetailPage", function() { + pageIdOn('pageinit', "itemDetailPage", function () { var page = this; - $('.btnPlay', page).on('click', function() { + $('.btnPlay', page).on('click', function () { playCurrentItem(this); }); - $('.btnPlayTrailer', page).on('click', function() { + $('.btnPlayTrailer', page).on('click', function () { playTrailer(page); }); - $('.btnSplitVersions', page).on('click', function() { + $('.btnSplitVersions', page).on('click', function () { splitVersions(page); }); - $('.btnSync', page).on('click', function() { + $('.btnSync', page).on('click', function () { SyncManager.showMenu({ items: [currentItem] }); }); - $('.btnRecord,.btnFloatingRecord', page).on('click', function() { + $('.btnRecord,.btnFloatingRecord', page).on('click', function () { var id = getParameterByName('id'); @@ -1993,12 +1993,12 @@ }); - $('.btnCancelRecording', page).on('click', function() { + $('.btnCancelRecording', page).on('click', function () { deleteTimer(page, currentItem.TimerId); }); - $('.btnMoreCommands', page).on('click', function() { + $('.btnMoreCommands', page).on('click', function () { var button = this; @@ -2008,33 +2008,33 @@ }); }); - $('.childrenItemsContainer', page).on('playallfromhere', function(e, index) { + $('.childrenItemsContainer', page).on('playallfromhere', function (e, index) { LibraryBrowser.playAllFromHere(_childrenItemsFunction, index); - }).on('queueallfromhere', function(e, index) { + }).on('queueallfromhere', function (e, index) { LibraryBrowser.queueAllFromHere(_childrenItemsFunction, index); }); - $(page).on("click", ".moreScenes", function() { + $(page).on("click", ".moreScenes", function () { Dashboard.getCurrentUser().then(function (user) { renderScenes(page, currentItem, user); }); - }).on("click", ".morePeople", function() { + }).on("click", ".morePeople", function () { renderCast(page, currentItem, getContext(currentItem)); - }).on("click", ".moreSpecials", function() { + }).on("click", ".moreSpecials", function () { Dashboard.getCurrentUser().then(function (user) { renderSpecials(page, currentItem, user); }); - }).on("click", ".moreCriticReviews", function() { + }).on("click", ".moreCriticReviews", function () { renderCriticReviews(page, currentItem); }); @@ -2046,7 +2046,7 @@ }); - pageIdOn('pagebeforeshow', "itemDetailPage", function() { + pageIdOn('pagebeforeshow', "itemDetailPage", function () { var page = this; diff --git a/dashboard-ui/scripts/site.js b/dashboard-ui/scripts/site.js index ad5f7f49a..6fe6a9b72 100644 --- a/dashboard-ui/scripts/site.js +++ b/dashboard-ui/scripts/site.js @@ -2208,7 +2208,7 @@ var AppInfo = {}; postInitDependencies.push('scripts/nowplayingbar'); } - postInitDependencies.push('components/testermessage'); + //postInitDependencies.push('components/testermessage'); require(postInitDependencies); });