Skip to content

Commit 1256c7c

Browse files
author
Ben Lerner
committed
eliminate stray console.logs
1 parent 0b42123 commit 1256c7c

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

src/js/trove/charts-lib.js

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1929,7 +1929,6 @@
19291929

19301930

19311931

1932-
console.log(points);
19331932
const fixedPoints = points.map((p) => ({
19341933
label: get(p, 'label'),
19351934
count: toFixnum(get(p, 'count'))
@@ -1946,7 +1945,6 @@
19461945
)
19471946
},
19481947
];
1949-
console.log(data)
19501948
const signals = [
19511949
{ name: 'dotSize', update: "scale('secondary', 1) - scale('secondary', 0)" },
19521950
];
@@ -2014,7 +2012,7 @@
20142012
},
20152013
];
20162014

2017-
const ans = {
2015+
return {
20182016
"$schema": "https://vega.github.io/schema/vega/v6.json",
20192017
description: title,
20202018
title: title ? { text: title } : '',
@@ -2030,8 +2028,6 @@
20302028
marks,
20312029
onExit: defaultImageReturn,
20322030
};
2033-
console.log(ans);
2034-
return ans;
20352031
}
20362032

20372033
function computeDomain(domainValues) {

0 commit comments

Comments
 (0)