refactor: remove window assignment

This commit is contained in:
Shivam Mishra 2019-10-30 15:37:23 +05:30 committed by GitHub
parent f32cf4bde7
commit 2c35a2f35b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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();
}