1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-12-24 17:10:29 +00:00

Fix problem with search filter operator

This commit is contained in:
Jermolene 2014-04-08 09:36:30 +01:00
parent 597b8ca4b1
commit 3282bd948f

View File

@ -18,7 +18,7 @@ Export our filter function
exports.search = function(source,operator,options) {
var invert = operator.prefix === "!";
return options.wiki.search(operator.operand,{
titles: source,
source: source,
invert: invert
});
};