ORB/templates/default/js/recipe_list.js
2018-05-22 00:35:52 +01:00

12 lines
303 B
JavaScript

$(function() {
var options = {
valueNames: [ 'ljs-name', 'ljs-type', 'ljs-status', 'ljs-time', 'tags' ],
plugins: [ ListFuzzySearch() ]
};
var recipeList = new List('recipelist', options);
$('#listfilter').delaysearch(recipeList);
$('#listfilter').clearable();
});