Merge pull request #271 from zemiacsik/patch-1

fixed undefined variables in .js
This commit is contained in:
Robbie Averill 2018-11-29 17:54:21 +01:00 committed by GitHub
commit 030e1d7b78
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -168,8 +168,8 @@
comment.fadeOut(1000, function() { comment.fadeOut(1000, function() {
comment.remove(); comment.remove();
if(commentsList.children().length === 0) { if($('.comments-holder .comments-list').children().length === 0) {
noCommentsYet.show(); $('.no-comments-yet').show();
} }
}); });
} }