I have a peculiar issue...
This function:
function FBlogin() { //If the site session variable isn't there {
alert("Window should show up...");
window.fbAsyncInit = function() {
FB.init({ appId: '227964737259200',
status: true,
cookie: true,
xfbml: true,
oauth: true});
function updateButton(response) {
if (response.authResponse) {
//user is already logged in and connected
alert("This is impossible, as you cannot already be logged in to facebook. Please refresh");
} else {
//user is not connected to your app or logged out
FB.login(function(response) {
if (response.authResponse) {
//Request and handle user data here
} else {
alert("no access granted");
}
}, {scope:'email'});
}
}
FB.getLoginStatus(updateButton);
FB.Event.subscribe('auth.statusChange', updateButton);
};
(function() {
var e = document.createElement('script'); e.async = true;
e.src = document.location.protocol
+ '//connect.facebook.net/en_US/all.js';
document.getElementById('fb-root').appendChild(e);
}());
}
Works great to evoke the Oauth window in IE, Chrome, FF, and Opera. However...
In Safari and Mobile Safari it does not. Has anyone had this issue, or see a problem with my code that might cause this?
____ UPDATE***______
If I disable the popup blocker in safari the window will show up. This is however an issue for my application,, and it does not work in mobile safari :(