forked from bitgapp/eqMac
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.component.html
More file actions
32 lines (28 loc) · 987 Bytes
/
Copy pathapp.component.html
File metadata and controls
32 lines (28 loc) · 987 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<div #container class="container">
<eqm-loading class="loader" *ngIf="!loaded"></eqm-loading>
<eqm-header class="header"
(settingsToggled)="toggleDropdownSection('settings')"
(helpToggled)="toggleDropdownSection('help')"
></eqm-header>
<eqm-divider></eqm-divider>
<eqm-settings
class="dropdown-section"
(clickedOutside)="closeDropdownSection('settings', $event)"
[@FadeInOut]
[@FromTop]
*ngIf="showDropdownSections.settings"
></eqm-settings>
<eqm-help
class="dropdown-section"
(clickedOutside)="closeDropdownSection('help', $event)"
[@FadeInOut]
[@FromTop]
*ngIf="showDropdownSections.help"
></eqm-help>
<eqm-volume-booster-balance></eqm-volume-booster-balance>
<eqm-divider></eqm-divider>
<eqm-equalizers (type)="syncDimensions()" (visibilityToggled)="syncDimensions()"></eqm-equalizers>
<eqm-divider></eqm-divider>
<eqm-outputs></eqm-outputs>
<eqm-tooltip-container></eqm-tooltip-container>
</div>