summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFreeyorp <TheFreeYorp@NOSPAM.G.m.a.i.l.replace>2013-06-04 06:58:52 +1200
committerFreeyorp <TheFreeYorp@NOSPAM.G.m.a.i.l.replace>2013-06-04 07:00:18 +1200
commit3435a1ed5fbc263e03e0621a66bb1431cccb7ef5 (patch)
tree268293b976b212db72bdcc3c48b90b8ddd29c4cb
parent17a0c162b80f655fdaa6ff86244053f9c67782e2 (diff)
downloadmanavis-3435a1ed5fbc263e03e0621a66bb1431cccb7ef5.tar.gz
manavis-3435a1ed5fbc263e03e0621a66bb1431cccb7ef5.tar.bz2
manavis-3435a1ed5fbc263e03e0621a66bb1431cccb7ef5.tar.xz
manavis-3435a1ed5fbc263e03e0621a66bb1431cccb7ef5.zip
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.
-rw-r--r--public/js/mv/heap.js2
1 files changed, 1 insertions, 1 deletions
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] = {};