Skip to content

Commit ab1a5fe

Browse files
authored
Removed console.log
1 parent 24f31f4 commit ab1a5fe

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/CanvasJS As CSV.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,7 @@
99
function CanvasJSDataAsCSV(chart, fileName) {
1010
if (chart.exportEnabled) {
1111
var exportCSV = document.createElement('div');
12-
var text = document.createTextNode("Save as CSV");
13-
console.log(chart)
12+
var text = document.createTextNode("Save as CSV");
1413
exportCSV.setAttribute("style", "padding: 12px 8px; background-color: " + chart.toolbar.backgroundColor + "; color: " + chart.toolbar.fontColor);
1514
exportCSV.appendChild(text);
1615
exportCSV.addEventListener("mouseover", function () {

0 commit comments

Comments
 (0)