Total Complexity | 2 |
Total Lines | 19 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | /** |
||
22 | export default class Admin { |
||
23 | constructor() { |
||
24 | window.$ = window.jQuery = $; |
||
25 | const sidebarPartial = new Sidebar; |
||
26 | const dropdownWithScrollBar = new DropdownWithScrollBar; |
||
|
|||
27 | |||
28 | /** |
||
29 | * Run sidebar toggle |
||
30 | */ |
||
31 | sidebarPartial.toggle(); |
||
32 | |||
33 | /** |
||
34 | * Run toggle on window resize |
||
35 | */ |
||
36 | $(window).resize(function () { |
||
37 | sidebarPartial.toggle(); |
||
38 | }); |
||
39 | } |
||
40 | } |