Skip to content

Instantly share code, notes, and snippets.

@ortense
Created August 4, 2014 21:19
Show Gist options
  • Save ortense/e1d9b103eb8549fa092f to your computer and use it in GitHub Desktop.
Save ortense/e1d9b103eb8549fa092f to your computer and use it in GitHub Desktop.
Monitoramento de interação com plugin social do facebook
FB.Event.subscribe('edge.create', function (url, element) {
console.log(['like', url, element]);
});
FB.Event.subscribe('edge.remove', function (url, element) {
console.log(['unlike', url, element]);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment