|
|
|
@ -48,8 +48,13 @@
|
|
|
|
|
|
|
|
|
|
|
|
// Facebook LoginOut
|
|
|
|
// Facebook LoginOut
|
|
|
|
function fbLoginOut() {
|
|
|
|
function fbLoginOut() {
|
|
|
|
FB.logout(function (response) {
|
|
|
|
FB.getLoginStatus(function (response) {
|
|
|
|
// Person is now logged out
|
|
|
|
if (response.status === 'connected') {
|
|
|
|
|
|
|
|
FB.logout(function (response) {
|
|
|
|
|
|
|
|
console.log('login out');
|
|
|
|
|
|
|
|
// Person is now logged out
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
</script>
|
|
|
|
|