Created
March 30, 2012 20:23
-
-
Save localpcguy/2254723 to your computer and use it in GitHub Desktop.
FB_AsyncInitCode.js
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div id="fb-root"></div> | |
<script> | |
window.fbAsyncInit = function() { | |
FB.init({ | |
appId: 'FBAPPID', // App ID | |
status: true, // check login status | |
cookie: true, // enable cookies to allow the server to access the session | |
xfbml: true // parse XFBML | |
}); | |
// Additional initialization code here | |
FB.Canvas.setAutoGrow(); | |
// Uncomment if you want the page to scroll up | |
//FB.Canvas.scrollTo(0, 0); | |
}; | |
// 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)); | |
</script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment