react-facebook
react-facebook copied to clipboard
Embedded Comments support
Hi, can you please add the Embedded Comments support? https://developers.facebook.com/docs/plugins/embedded-comments/ The element class should be class="fb-comment-embed" for comments, rather than class="fb-post" for posts. It is quite easy to detect it:
var className = 'fb-post';
if (href.indexOf('comment_id=') > 0) {
className = 'fb-comment-embed';
} else if (href.indexOf('/facebook/videos/') > 0) {
className = 'fb-video';
}
Regards, Marek
+1 !! Thanks!