fixed param order (#15518)

This commit is contained in:
Yuri Astrakhan 2017-12-11 16:11:10 -05:00 committed by Thomas Neirynck
parent cd9af07533
commit 06ebbf4ac7

View file

@ -117,7 +117,7 @@ import { VisFactoryProvider } from 'ui/vis/vis_factory';
import { VisTypesRegistryProvider } from 'ui/registry/vis_types';
class MyVisualization {
constructor(vis, el) {
constructor(el, vis) {
this.el = el;
this.vis = vis;
}