Created
April 3, 2014 21:04
-
-
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.
This file contains 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
$.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