base.js 320 B

1234567891011
  1. /* Highlight */
  2. $( document ).ready(function() {
  3. hljs.initHighlightingOnLoad();
  4. $('table').addClass('table table-striped table-hover');
  5. $('pre').addClass('highlight');
  6. });
  7. /* Prevent disabled links from causing a page reload */
  8. $("li.disabled a").click(function() {
  9. event.preventDefault();
  10. });