From 50a27ba0b4da0261b84d3efd1f6f40f36163c57c Mon Sep 17 00:00:00 2001 From: Luke Pulverenti Date: Mon, 14 Mar 2016 00:58:46 -0400 Subject: [PATCH] update details --- dashboard-ui/scripts/itemdetailpage.js | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/dashboard-ui/scripts/itemdetailpage.js b/dashboard-ui/scripts/itemdetailpage.js index 950cabd652..dff06efb72 100644 --- a/dashboard-ui/scripts/itemdetailpage.js +++ b/dashboard-ui/scripts/itemdetailpage.js @@ -358,8 +358,11 @@ overlayPlayButton: true }); - section.querySelector('.nextUpItems').innerHTML = html; - ImageLoader.lazyChildren(section); + var itemsContainer = section.querySelector('.nextUpItems'); + + itemsContainer.innerHTML = html; + ImageLoader.lazyChildren(itemsContainer); + $(itemsContainer).createCardMenus(); }); }