`;
$(html).insertBefore('.blog-item-hero-banner .blog-item-title');
$('.blog-item-hero-banner').addClass('has-video');
}
}).fail(function(e){
console.error(e)
});
}
function checkSourceUrl(href, $el) {
$.ajax({
url: window.location.origin + href + "?format=json-pretty",
cache:false,
}).done(function(data){
if (data.item.sourceUrl && data.item.sourceUrl.length > 0) {
replaceImageWithVideo(data.item.sourceUrl, $el);
}
}).fail(function(e){
console.error(e)
});
}
function replaceImageWithVideo(videoUrl, $el) {
let html = `
`;
$el.find('.summary-thumbnail').append( html );
}