Update documentation

This commit is contained in:
Vinta
2015-06-07 02:44:15 +08:00
commit 7a6df3308e
23 changed files with 4475 additions and 0 deletions

20
js/base.js Normal file
View File

@ -0,0 +1,20 @@
/* Highlight */
$( document ).ready(function() {
hljs.initHighlightingOnLoad();
$('table').addClass('table table-striped table-hover');
});
$('body').scrollspy({
target: '.bs-sidebar',
});
/* Prevent disabled links from causing a page reload */
$("li.disabled a").click(function() {
event.preventDefault();
});