ORB/templates/default/js/recipe_list.js

12 lines
303 B
JavaScript
Raw Permalink Normal View History

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
});