- the async call needs to load into the body, otherwise FB.ui doesn't work in "dialog" mode

- facebook also recommends loading into the front of the body:
  http://developers.facebook.com/docs/reference/javascript/FB.init
This commit is contained in:
klochner 2010-08-17 14:35:51 -07:00 committed by Mike Mangino
parent 9ab4a4603e
commit c7f52f2f8a

View File

@ -23,7 +23,7 @@ module Facebooker2
(function() {
var s = document.createElement('div');
s.setAttribute('id','fb-root');
document.documentElement.getElementsByTagName("HEAD")[0].appendChild(s);
document.documentElement.getElementsByTagName("body")[0].appendChild(s);
var e = document.createElement('script');
e.src = document.location.protocol + '//connect.facebook.net/en_US/all.js';
e.async = true;