1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2025-01-12 02:10:27 +00:00
The change affects the default display of the story river, reversing
the order of entries.
This commit is contained in:
Jermolene 2015-02-16 19:17:10 +00:00
parent 25442e349e
commit 42d130d49d

View File

@ -27,11 +27,7 @@ exports.list = function(source,operator,options) {
} }
}); });
} else { } else {
source(function(tiddler,title) { results = list;
if(list.indexOf(title) > -1) {
results.push(title);
}
});
} }
return results; return results;
}; };