You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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';
}
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:
Regards,
Marek