- 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:
parent
9327bfe44c
commit
1a4f9daae2
@ -40,7 +40,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/#{locale}/all.js';
|
||||
e.async = true;
|
||||
@ -53,4 +53,4 @@ module Facebooker2
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
|
Loading…
Reference in New Issue
Block a user