aboutsummaryrefslogtreecommitdiff
path: root/docs/_book/gitbook/gitbook-plugin-api/api.js
blob: ebf6acf42dca1aa207a6493392edee61fd727350 (plain) (blame)
1
2
3
4
5
6
7
require(["gitbook"], function(gitbook) {
  gitbook.events.bind("page.change", function() {
    $(".api-header").click(function(event) {
      $(event.currentTarget).parent().toggleClass('expanded');
    });
  });
});