Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save jittarao/9f9845850a548bdac720cc2aa5df9496 to your computer and use it in GitHub Desktop.
Save jittarao/9f9845850a548bdac720cc2aa5df9496 to your computer and use it in GitHub Desktop.
<!-- hide Messenger by default -->
<script>
document.addEventListener('gistReady', function () {
gist.chat('hide');
});
</script>
<!-- simply add 'class="gist-open-chat"' to any link on your site -->
<a href="#" class="gist-open-chat">Click me</a>
<!-- place this script tag after the Gist tracking code & jQuery -->
<script>
var GIST_CHAT_SELECTOR = '.gist-open-chat';
jQuery(document).ready(function($) {
document.addEventListener('gistChatReady', function () {
$(GIST_CHAT_SELECTOR).click(function(e) {
e.preventDefault();
gist.chat('show');
gist.chat('openNewConversation', 'INSERT PRE-POPULATED CONTENT');
});
});
});
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment