Skip to content

Instantly share code, notes, and snippets.

@gliesche
Created April 30, 2012 11:00
Show Gist options
  • Select an option

  • Save gliesche/2557380 to your computer and use it in GitHub Desktop.

Select an option

Save gliesche/2557380 to your computer and use it in GitHub Desktop.
Facebook Javascript SDK loading for Jade templates
div(id="fb-root")
script
window.fbAsyncInit = function() {
FB.init({
appId :'YOUR_APP_ID', // App ID
channelUrl : '//WWW.YOUR_DOMAIN.COM/channel.html', // Channel File
status : true, // check login status
cookies : true, // enable cookies to allow the server to access the session
xfbml : true // parse XFBML
});
};
// Load the SDK Asynchronously
(function(d){
var js, id = 'facebook-jssdk', ref = d.getElementsByTagName('script')[0];
if (d.getElementById(id)) {return;}
js = d.createElement('script'); js.id = id; js.async = true;
js.src = "//connect.facebook.net/en_US/all.js";
ref.parentNode.insertBefore(js, ref);
}(document));
@rblcb

rblcb commented Aug 4, 2017

Copy link
Copy Markdown

gujk,

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment