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
1 changed files with 1 additions and 5 deletions

View File

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