Skip to content

Instantly share code, notes, and snippets.

@vivg
Created April 13, 2015 09:25
Show Gist options
  • Select an option

  • Save vivg/74646ee36c7a12befaa0 to your computer and use it in GitHub Desktop.

Select an option

Save vivg/74646ee36c7a12befaa0 to your computer and use it in GitHub Desktop.
FB JS SDK initialization polling
function FB_wait() {
if (typeof FB == "undefined") {
window.setTimeout(FB_wait, 100);
} else {
console.log("fb ready");
FB.Event.subscribe("comment.create", comment_callback);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment