1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-06-16 10:29:54 +00:00

Fix !is[variable] operator

Fixes #3804
This commit is contained in:
Jermolene 2019-02-28 11:54:04 +00:00
parent 36e76429b1
commit b862348b06

View File

@ -19,7 +19,7 @@ exports.variable = function(source,prefix,options) {
var results = [];
if(prefix === "!") {
source(function(tiddler,title) {
if(!title in options.widget.variables) {
if(!(title in options.widget.variables)) {
results.push(title);
}
});