Files
bbc-young-reporter/_site/js/article-page.js
2020-03-03 11:03:13 +00:00

7 lines
168 B
JavaScript

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