react-facebook icon indicating copy to clipboard operation
react-facebook copied to clipboard

Embedded Comments support

Open EasySoftwarePoland opened this issue 6 years ago • 1 comments

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

EasySoftwarePoland avatar Nov 21 '18 13:11 EasySoftwarePoland

+1 !! Thanks!

mrkenng avatar Mar 02 '20 02:03 mrkenng