* feat(uhk-message): Add spin animation * feat(agent): Add loading page * fix device connected / disconnected events
19 lines
883 B
HTML
19 lines
883 B
HTML
<app-update-available *ngIf="showUpdateAvailable$ | async"
|
|
(updateApp)="updateApp()"
|
|
(doNotUpdateApp)="doNotUpdateApp()">
|
|
</app-update-available>
|
|
|
|
<side-menu *ngIf="deviceConfigurationLoaded$ | async"></side-menu>
|
|
<div id="main-content" class="main-content">
|
|
<router-outlet></router-outlet>
|
|
</div>
|
|
<div class="github-fork-ribbon" *ngIf="!(runningInElectron$ | async)">
|
|
<a class="" href="https://github.com/UltimateHackingKeyboard/agent" title="Fork me on GitHub">Fork me on GitHub</a>
|
|
</div>
|
|
<notifier-container></notifier-container>
|
|
<progress-button class="save-to-keyboard-button"
|
|
*ngIf="(saveToKeyboardState$ | async).showButton"
|
|
[@showSaveToKeyboardButton]
|
|
[state]="saveToKeyboardState$ | async"
|
|
(clicked)="clickedOnProgressButton($event)"></progress-button>
|