On my site I have some Facebook integration code to allow users logon via Facebook account
<div id="fb-root"></div>
<script type="text/javascript">
window.fbAsyncInit = function() {
FB.init({
appId : {/literal}{$fbident}{literal},
channelURL : '//www.mysite.com/js/channel.html',
status : true,
cookie : true, // enable cookies to allow the server to access the session
xfbml : true,
oauth : true // parse XFBML
});
// whenever the user logs in, we refresh the page
};
(function(d){
var js, id = 'facebook-jssdk'; if (d.getElementById(id)) {return;}
js = d.createElement('script'); js.id = id; js.async = true;
js.src = "//connect.facebook.net/en_US/all.js";
d.getElementsByTagName('head')[0].appendChild(js);
}(document));
function fbLogin()
{
FB.login(function(response) {
if (response.authResponse) {
// user is logged in and granted some permissions.
// perms is a comma separated list of granted permissions
document.location = '{/literal}http://{$smarty.server.SERVER_NAME}/users/fblogin/{literal}'; }}, perms:'email'});}
In Chrome logon works fine. I have found similar issue here
but in my situation error occured on line 14 of all.js and I have not a global variable 'name' declared.
Tested for Firefox 5.0 Win and Firefox 10.0.1 Ubuntu. Please help to fix this error.