mirror of
https://github.com/JohnEstropia/CoreStore.git
synced 2026-03-20 16:44:08 +01:00
update pod version and jazzy docs
This commit is contained in:
@@ -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(
|
||||
|
||||
Reference in New Issue
Block a user