When clicking Login, a function called login() and request for Facebook permissions. However while it does work on Chrome and Opera, it doesn't do anything on Firefox.
FB.login(function(response) {
if (response.authResponse) {
window.location = "<?=$loginUrl?>";
accessToken = response.authResponse.accessToken;
}
}, {scope: 'email,user_birthday'});
I have added an alert just before this code, and it runs when clicking the login button. So the problem is solely with facebook's login code.
You can see my login page on http://justwalk.it/login
Also there is no "a popup window was blocked" or warning of the sort. Anybody experienced this? What could be the reason for which it doesn't work on firefox?