kopia lustrzana https://github.com/miklobit/TiddlyWiki5
Search over tags as well as the title and text fields
rodzic
27f724d0ed
commit
d3d72eff1b
|
@ -754,7 +754,8 @@ exports.search = function(text,options) {
|
||||||
for(var t=0; t<searchTermsRegExps.length; t++) {
|
for(var t=0; t<searchTermsRegExps.length; t++) {
|
||||||
// Search title and body
|
// Search title and body
|
||||||
if(match) {
|
if(match) {
|
||||||
match = searchTermsRegExps[t].test(tiddler.fields.title) || searchTermsRegExps[t].test(tiddler.fields.text);
|
var tags = tiddler.fields.tags ? tiddler.fields.tags.join("\0") : "";
|
||||||
|
match = searchTermsRegExps[t].test(tiddler.fields.title) || searchTermsRegExps[t].test(tags) || searchTermsRegExps[t].test(tiddler.fields.text);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return options.invert ? !match : match;
|
return options.invert ? !match : match;
|
||||||
|
|
Ładowanie…
Reference in New Issue