$()

in assets/themes/zeppelin/js/docs.js [29:45]


$(function() {
  // Display anchor links when hovering over headers. For documentation of the
  // configuration options, see the AnchorJS documentation.
  anchors.options = {
    placement: 'left'
  };
  anchors.add();

  $(window).bind('hashchange', function() {
    maybeScrollToHash();
  });

  $('[data-toggle="tooltip"]').tooltip();

  anchors.remove('.zeppelin-title');

});