Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save jittarao/5df015b0289dded19e99de3acce9383c to your computer and use it in GitHub Desktop.
Save jittarao/5df015b0289dded19e99de3acce9383c to your computer and use it in GitHub Desktop.
<!-- place this script tag after the Gist tracking code -->
<script>
// open the Messenger widget when you receive a message
document.addEventListener('gistChatReady', function () {
document.addEventListener("onGistUnreadCountChange", function(e) {
if (window.gistUnreadCount > 0 || $('.gist-messenger-iframe').css('display') === 'block') {
gist.chat("showLauncher");
} else {
gist.chat("hideLauncher");
}
});
});
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment