Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save jittarao/771cb42bcb7b2a1addef11fd8b4a627b to your computer and use it in GitHub Desktop.
Save jittarao/771cb42bcb7b2a1addef11fd8b4a627b to your computer and use it in GitHub Desktop.
<script>
/* Hide Gist Messenger Launcher on page load */
gist.chat('hideLauncher');
/* open the Messenger when you receive a message */
document.addEventListener("onGistUnreadCountChange", function(e) {
if(window.gistUnreadCount > 0) {
gist.chat('open');
}
});
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment