Conditions | 1 |
Total Lines | 18 |
Code Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | /** |
||
26 | constructor() { |
||
27 | window.$ = window.jQuery = $; |
||
28 | |||
29 | /** |
||
30 | * Initiate component input |
||
31 | */ |
||
32 | this.input = new Input(); |
||
33 | |||
34 | this.select = new Select(); |
||
35 | |||
36 | this.validation = new Validation(); |
||
37 | |||
38 | this.wizard = new Wizard(); |
||
39 | |||
40 | this.upload = new Upload(); |
||
41 | |||
42 | this.editor = new Editor(); |
||
43 | } |
||
44 | } |