From 42d130d49d124602a212810c0da88be139cbf959 Mon Sep 17 00:00:00 2001 From: Jermolene Date: Mon, 16 Feb 2015 19:17:10 +0000 Subject: [PATCH] Revert #1496 The change affects the default display of the story river, reversing the order of entries. --- core/modules/filters/list.js | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/core/modules/filters/list.js b/core/modules/filters/list.js index 8548f1139..1b23b9382 100644 --- a/core/modules/filters/list.js +++ b/core/modules/filters/list.js @@ -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; };