The Salad Liberation Front discusses more of the awesome things happening at the Olympics! They also talk about Red Dead Redemption 2 and what the release date means for other companies. Shelby is excited to talk about who might be making Metroid Prime 4 and why it could be the greatest thing ever. Is the Shadow of the Colossus Remake any good? And finally, the team chats about what sorts of games they want to Stream. All this and More on this weeks episode of NPX!
Subscribe to NPX on Youtube! At NPX Podcast!
What are you playing? Tweet us (@NPXPodcast) or comment below!
Listen to more of Schuylar, Shelby, Summer, and Kalie, or as they like to call themselves – The Salad Liberation Front. Read more about the Hosts of NPX.
Find more of The Front on Twitter by following @NPXPodcast, leave us a review! New Episodes Thursdays, see more articles on our NPX Podcast page if you’re looking for more podcasts to listen to, see the Stolendroids Media page.
Products from Amazon.com
‹
›
jQuery(document).ready(function() {
var CONSTANTS = {
productMinWidth : 185,
productMargin : 20
};
var $adUnits = jQuery('.aalb-product-carousel-unit');
$adUnits.each(function() {
var $adUnit = jQuery(this),
$wrapper = $adUnit.find('.aalb-pc-wrapper'),
$productContainer = $adUnit.find('.aalb-pc-product-container'),
$btnNext = $adUnit.find('.aalb-pc-btn-next'),
$btnPrev = $adUnit.find('.aalb-pc-btn-prev'),
$productList = $productContainer.find('.aalb-pc-product-list'),
$products = $productList.find('.aalb-pc-product'),
productCount = $products.length;
if (!productCount) {
return true;
}
var rows = $adUnit.find('input[name=rows]').length && parseInt($adUnit.find('input[name=rows]').val(), 10);
var columns = $adUnit.find('input[name=columns]').length && parseInt($adUnit.find('input[name=columns]').val(), 10);
if( columns ) {
var productContainerMinWidth = columns * (CONSTANTS.productMinWidth + CONSTANTS.productMargin) + 'px';
$adUnit.css( 'min-width', productContainerMinWidth );
$productContainer.css( 'min-width', productContainerMinWidth );
$products.filter( ':nth-child(' + columns + 'n + 1)' ).css( 'clear', 'both' );
}
if (rows && columns) {
var cutOffIndex = (rows * columns) - 1;
$products.filter(':gt(' + cutOffIndex + ')').remove();
}
function updateLayout() {
var wrapperWidth = $wrapper.width();
var possibleColumns = columns || parseInt( wrapperWidth / (CONSTANTS.productMinWidth + CONSTANTS.productMargin), 10 );
var actualColumns = columns || possibleColumns < productCount ? possibleColumns : productCount;
/**
* The actual columns can be zero when the wraperwidth is less than sum of CONSTANTS.