bisrael / cordova-plugin-facebook

Cordova Plugin for iOS and Android Facebook SDK
MIT License
25 stars 21 forks source link

Basic Logout Don't works #25

Open jeffersonest opened 7 years ago

jeffersonest commented 7 years ago

Logout not working with this code:

In my app, when the user clicks on "exit-bt", the logout method don't works, what i do?

$('.exit-bt').click(function () {
CordovaFacebook.logout({
onSuccess: function() {
alert("The user is now logged out");
}
});
CordovaFacebook.logout();
});

What I need?