diff --git a/www/js/openfb-angular.js b/www/js/openfb-angular.js index b076ec0..1f9c31c 100644 --- a/www/js/openfb-angular.js +++ b/www/js/openfb-angular.js @@ -55,7 +55,7 @@ angular.module('openfb', []) function login(fbScope) { if (!fbAppId) { - return error({error: 'Facebook App Id not set.'}); + return Error({error: 'Facebook App Id not set.'}); } var loginWindow; @@ -84,7 +84,7 @@ angular.module('openfb', []) } loginWindow = window.open(FB_LOGIN_URL + '?client_id=' + fbAppId + '&redirect_uri=' + oauthRedirectURL + - '&response_type=token&display=popup&scope=' + fbScope, '_blank', 'location=no'); + '&response_type=token&scope=' + fbScope, '_blank', 'location=no'); // If the app is running in Cordova, listen to URL changes in the InAppBrowser until we get a URL with an access_token or an error if (runningInCordova) {