Skip to content

Instantly share code, notes, and snippets.

@juanbrujo
Created April 3, 2014 21:04
Show Gist options
  • Save juanbrujo/9962906 to your computer and use it in GitHub Desktop.
Save juanbrujo/9962906 to your computer and use it in GitHub Desktop.
This small script for Facebook tabs initializes FB Connect API and set's it's size acording to the iframe's width and height.
$.ajaxSetup({ cache: true });
$.getScript('//connect.facebook.net/es_LA/all.js', function(){
FB.init({
appId: 'appid',
});
increaseIframeSize(w,h);
});
function increaseIframeSize(w,h){
var obj = new Object;
obj.width=w;
obj.height=h;
FB.Canvas.setSize(obj);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment