aboutsummaryrefslogtreecommitdiff
path: root/docs/_book/gitbook/gitbook-plugin-github/plugin.js
blob: 14810ce0b9d185c941dc37c9592f9a37a515eaf3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
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)
            }
        });
    });
});