2020-01-29 00:29:23 +00:00
|
|
|
<ng-container *ngIf="angularExists === true; else errorOrLoad">
|
2020-02-04 15:34:34 +00:00
|
|
|
<div class="devtools-wrapper noselect" [@enterAnimation]>
|
2020-01-29 17:10:57 +00:00
|
|
|
<ng-devtools-tabs [messageBus]="messageBus" [angularVersion]="angularVersion"></ng-devtools-tabs>
|
2020-01-29 00:29:23 +00:00
|
|
|
</div>
|
|
|
|
|
</ng-container>
|
|
|
|
|
<ng-template #errorOrLoad>
|
|
|
|
|
<ng-container *ngIf="angularExists === false; else load">
|
|
|
|
|
<div>
|
|
|
|
|
Not an Angular app
|
|
|
|
|
</div>
|
|
|
|
|
</ng-container>
|
|
|
|
|
<ng-template #load>
|
2020-02-04 15:34:34 +00:00
|
|
|
<div class="initializing" *ngIf="angularExists === null">
|
|
|
|
|
<div class="loading">
|
|
|
|
|
</div>
|
2020-01-29 00:29:23 +00:00
|
|
|
</div>
|
|
|
|
|
</ng-template>
|
|
|
|
|
</ng-template>
|
2020-01-27 18:40:18 +00:00
|
|
|
|