Skip to content

Commit

Permalink
Remove console.log
Browse files Browse the repository at this point in the history
  • Loading branch information
bherr2 committed Feb 29, 2024
1 parent e7c3573 commit a8cc903
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion docs/demo.js
Original file line number Diff line number Diff line change
Expand Up @@ -4456,7 +4456,6 @@
}
function setDataset(dataset) {
const $vis = document.getElementById("vis");
console.log(dataset, $vis);
for (const attr of Object.keys(dataset)) {
$vis.setAttribute(attr, dataset[attr]);
}
Expand Down
1 change: 0 additions & 1 deletion src/demo.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ async function getDatasets() {

function setDataset(dataset) {
const $vis = document.getElementById('vis');
console.log(dataset, $vis);
for (const attr of Object.keys(dataset)) {
$vis.setAttribute(attr, dataset[attr])
}
Expand Down

0 comments on commit a8cc903

Please sign in to comment.