From 99bfe82587ad6fd22e27c1a19fdc4bc6a209c733 Mon Sep 17 00:00:00 2001 From: Luke Pulverenti Date: Sat, 14 Mar 2015 00:50:23 -0400 Subject: [PATCH] add dynamic images --- dashboard-ui/scripts/indexpage.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/dashboard-ui/scripts/indexpage.js b/dashboard-ui/scripts/indexpage.js index e23ffec121..2d0e21d821 100644 --- a/dashboard-ui/scripts/indexpage.js +++ b/dashboard-ui/scripts/indexpage.js @@ -462,7 +462,7 @@ switch (index) { case 0: - return 'smalllibrarytiles-automobile'; + return 'librarytiles-automobile'; case 1: return 'resume'; case 2: @@ -493,6 +493,9 @@ else if (section == 'smalllibrarytiles-automobile') { Sections.loadLibraryTiles(elem, userId, 'homePageSmallBackdrop', index, true); } + else if (section == 'librarytiles-automobile') { + Sections.loadLibraryTiles(elem, userId, 'backdrop', index, true); + } else if (section == 'librarybuttons') { Sections.loadlibraryButtons(elem, userId, index); }