')
.prepend('x');
return false;
}
else {
$('#cookieModal').foundation('reveal', 'open');
}
});
});
$(document).on('click', '.close-video' ,function(e){
e.preventDefault();
//Chiude gli altri video, nel caso ve ne fossero alcuni in riproduzione
$allVideoContainers.each(function(){
$(this).html('');
//$(this).children().fadeOut('slow');
});
//Ci si assicura che tutti i thumbnail siano visibili, poi si nasconde solo quello interessato
$allThumbnails.each(function(){$(this).removeClass('hide');});
});
$('#allow_cookie').click(function() {
window.CookieBanner.showPopup();
$('#cookieModal').foundation('reveal', 'close');
});
});
});