compass/doc-src/content/search-data.js.erb

8 lines
227 B
Plaintext
Raw Normal View History

function search(term, callback) {
var ids = index.terms[term] || index.approximate[term] || [];
var items = $.map(ids, function(id){ return index.items[id]; });
callback(items)
}
var index = <%= search_index.to_json %>;