Clicking on the link has no effect. I've attached the debugger in Chrome and can see that it is hitting the following:
newsfeed.js:265 self.showComments();
step into this, and it hits the following code:
showComments: function(){this.$commentBtn.parents('.ow_newsfeed_control:eq(0)');var $c = this.$featuresCont.show();$c.show().find('.ow_newsfeed_comments').show().find('.ow_newsfeed_comment_input').focus();var $delim = $c.find('.ow_newsfeed_delimiter');
if ( this.likes != 0 ){$delim.show();}
this.comments = -1;},
Two questions here, why is it checking that likes are greater than
1 before allowing the show?
If I continue the debug the delim.show() is being called but nothing is appearing on the
screen?
Any ideas?
Derek