mirror of
https://github.com/mgrove36/bbc-young-reporter.git
synced 2026-03-03 11:27:06 +00:00
7 lines
176 B
JavaScript
7 lines
176 B
JavaScript
$(document).ready(function(){
|
|
// remove black bar if article has no content
|
|
if (! $.trim($(".article-content").html())) {
|
|
$(".article-content").hide();
|
|
}
|
|
});
|