From 3435a1ed5fbc263e03e0621a66bb1431cccb7ef5 Mon Sep 17 00:00:00 2001 From: Freeyorp Date: Tue, 4 Jun 2013 06:58:52 +1200 Subject: Show all defined records Rarely, 24 hour blocks will still contain undefined records. These are infrequent enough to not impede overall analysis (you can use mv.heap.def.filterAll(); dc.redrawAll() to confirm), but when loading in multiple datasets, can have a substantial number of records occurring before them. This should become a non-issue again when the scrubber keeps track of state outside of the logs being collated. --- public/js/mv/heap.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/js/mv/heap.js b/public/js/mv/heap.js index 4ba5c06..5687bcf 100644 --- a/public/js/mv/heap.js +++ b/public/js/mv/heap.js @@ -52,7 +52,7 @@ var mv = function(mv) { * 2 -> Record and all succeeding records are well defined */ monoGroup("def", function(d) { if (d.pcstat == undefined) { return 0; } if (d.date <= mv.parser.fullyDefinedCutoff()) { return 1; } return 2; }); - heap.def.dim.filterExact(2); + heap.def.dim.filter([1,2]); } function monoGroup(name, mapping) { heap[name] = {}; -- cgit v1.2.3-60-g2f50