I am trying to set the height so I don’t have a scrollbar in my facebook app, seen HERE
I have used jQuery to create the canvas plugin using the GRAPH API and have tried adding the following codes to edit the height but none work. Anyone have any ideas?
In my scripts.js I try adding the following to the bottom:
FB.Canvas.setAutoResize(); //doesn't work
Also tried the following:
window.fbAsyncInit = function() {
FB.Canvas.setSize({ height: 2500 });
}; //doesn't work either
1 Answer