You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- /* Highlight */
- $( document ).ready(function() {
- hljs.initHighlightingOnLoad();
- $('table').addClass('table table-striped table-hover');
- $('pre').addClass('highlight');
- });
-
- $('body').scrollspy({
- target: '.bs-sidebar',
- });
-
- $('.bs-sidebar').affix({
- offset: {
- top: 210
- }
- });
-
- /* Prevent disabled links from causing a page reload */
- $("li.disabled a").click(function() {
- event.preventDefault();
- });
|