update pod version and jazzy docs

This commit is contained in:
John Estropia
2019-03-31 00:29:43 +09:00
parent 6f290213fa
commit b2dba0d6fd
348 changed files with 59478 additions and 14559 deletions

View File

@@ -2,6 +2,7 @@ $(function(){
var searchIndex = lunr(function() {
this.ref('url');
this.field('name');
this.field('abstract');
});
var $typeahead = $('[data-typeahead]');
@@ -27,7 +28,7 @@ $(function(){
$.getJSON(searchURL).then(function(searchData) {
$.each(searchData, function (url, doc) {
searchIndex.add({url: url, name: doc.name});
searchIndex.add({url: url, name: doc.name, abstract: doc.abstract});
});
$typeahead.typeahead(