Browse Source

refactor: remove window assignment

funnel-chart
Shivam Mishra 5 years ago
committed by GitHub
parent
commit
2c35a2f35b
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/js/charts/FunnelChart.js

+ 1
- 1
src/js/charts/FunnelChart.js View File

@@ -7,7 +7,7 @@ export default class FunnelChart extends AggregationChart {
constructor(parent, args) {
super(parent, args);
this.type = 'funnel';
window.funnel = this;
funnel = this;
this.setup();
}



Loading…
Cancel
Save