2017-01-08 17:38:08 +00:00
|
|
|
$(function() {
|
|
|
|
var options = {
|
|
|
|
valueNames: [ 'ljs-name', 'ljs-type', 'ljs-status', 'ljs-time', 'tags' ],
|
|
|
|
plugins: [ ListFuzzySearch() ]
|
|
|
|
};
|
|
|
|
|
|
|
|
var recipeList = new List('recipelist', options);
|
|
|
|
|
|
|
|
$('#listfilter').delaysearch(recipeList);
|
2018-05-22 00:35:52 +01:00
|
|
|
$('#listfilter').clearable();
|
|
|
|
|
2017-01-08 17:38:08 +00:00
|
|
|
});
|