Skip to content

Commit

Permalink
refactor: remove console logging
Browse files Browse the repository at this point in the history
  • Loading branch information
mcmcgrath13 committed Jan 21, 2021
1 parent e8dcd67 commit 3fcf5d4
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/mixins/vega-base-mixin.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ import * as _ from 'lodash';
// TODO: make background transparent by default
const vegaBaseMixin = {
render(h) {
console.log(`rendering vega chart with id: ${this.fullId}`);
return h('div', { attrs: { id: this.fullId } });
},
props: {
Expand Down Expand Up @@ -107,7 +106,6 @@ const vegaBaseMixin = {
},
mounted() {
this.$nextTick(() => {
console.log(this.fullId);
const el = document.querySelector('#' + this.fullId);
if (el) {
this.parentElement = el.parentElement;
Expand Down

0 comments on commit 3fcf5d4

Please sign in to comment.