Skip to content

Instantly share code, notes, and snippets.

@swahaniroy
Created May 26, 2022 15:23
Show Gist options
  • Save swahaniroy/514e04a45bf29479189735469ac800b3 to your computer and use it in GitHub Desktop.
Save swahaniroy/514e04a45bf29479189735469ac800b3 to your computer and use it in GitHub Desktop.
The index.js file
logoutButon.addEventListener('click', function() {
const isLeaved = confirm('Do you want to log out?');
if (isLeaved) {
// logout from cometchat and then clear storage.
CometChatWidget.logout().then(response => {
// User successfully logged out.
// Perform any clean up if required.
// redirect to login page.
window.location.href = '/login.html';
});
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment