Skip to content

Instantly share code, notes, and snippets.

@w00fz
Created November 11, 2015 22:22
Show Gist options
  • Save w00fz/911064e8c425ca6e002d to your computer and use it in GitHub Desktop.
Save w00fz/911064e8c425ca6e002d to your computer and use it in GitHub Desktop.
// current
((window.gitter = {}).chat = {}).options = {
room: 'getgrav/grav'
};
document.addEventListener('gitter-sidecar-instance-started', function(e) {
$('.gitter-open-chat-button').html('<i class="fa fa-comments-o fa-fw"></i> Open Chat');
});
});
// ideal
((window.gitter = {}).chat = {}).options = {
room: 'getgrav/grav',
button: '<i class="fa fa-comments-o fa-fw"></i> Open Chat'
};
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment