Skip to content

Instantly share code, notes, and snippets.

@kostasx
Created February 4, 2015 00:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kostasx/75df40efdf518e0e5130 to your computer and use it in GitHub Desktop.
Save kostasx/75df40efdf518e0e5130 to your computer and use it in GitHub Desktop.
Facebook Graph API - Sublime Text Snippet
<snippet>
<content><![CDATA[
FB.api( "${1:/me}", function(response){
if (response && !response.error) {
${2://do something with response here...}
}
});
]]></content>
<tabTrigger>FB.api</tabTrigger>
</snippet>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment