Files
bbc-young-reporter/js/article-page.js
Matthew Grove b382db281c Continue redesigning website
Start template for article list for each year
2020-03-03 07:26:53 +00:00

7 lines
176 B
JavaScript

$(document).ready(function(){
// remove black bar if article has no content
if (! $.trim($(".article-content").html())) {
$(".article-content").hide();
}
});