Travis CI | 67efe3e Merge pull request #26 from Philiphil/patch-1

This commit is contained in:
Tamer Tas
2017-05-01 12:23:51 +00:00
commit 6464cb2d85
44 changed files with 23142 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
require([ 'gitbook' ], function (gitbook) {
gitbook.events.bind('start', function (e, config) {
var githubURL = config.github.url;
gitbook.toolbar.createButton({
icon: 'fa fa-github',
label: 'GitHub',
position: 'right',
onClick: function() {
window.open(githubURL)
}
});
});
});