Skip to content

Commit 546cc36

Browse files
committed
remove angular2-busy loader which is broken with the use of ng AOT
1 parent 9ca9e74 commit 546cc36

File tree

7 files changed

+0
-15
lines changed

7 files changed

+0
-15
lines changed

.angular-cli.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@
2323
"../node_modules/bootstrap/dist/css/bootstrap.css",
2424
"../node_modules/leaflet/dist/leaflet.css",
2525
"../node_modules/font-awesome/css/font-awesome.css",
26-
"../node_modules/angular2-busy/build/style/busy.css",
2726
"../node_modules/dragula/dist/dragula.css"
2827
],
2928
"scripts": [],

package.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,6 @@
7474
"@types/node": "9.4.6",
7575
"@types/webpack-env": "1.13.5",
7676
"@types/xmlbuilder": "0.0.32",
77-
"angular2-busy": "2.0.4",
7877
"angulartics2": "5.1.1",
7978
"bootstrap": "3.3.7",
8079
"codelyzer": "4.0.1",

public_src/app.module.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ import { BrowserModule } from '@angular/platform-browser';
1414
import { BrowserAnimationsModule } from '@angular/platform-browser/animations';
1515
import { TranslateModule, TranslateLoader } from '@ngx-translate/core';
1616
import { TranslateHttpLoader } from '@ngx-translate/http-loader';
17-
import { BusyModule } from 'angular2-busy';
1817
import { DragulaModule } from 'ng2-dragula';
1918
import {
2019
AccordionModule,
@@ -84,7 +83,6 @@ const ROUTES: Routes = [
8483
BsDropdownModule.forRoot(),
8584
BrowserAnimationsModule,
8685
BrowserModule,
87-
BusyModule,
8886
ButtonsModule.forRoot(),
8987
CarouselModule.forRoot(),
9088
DragulaModule,

public_src/components/app/app.component.html

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,6 @@
3636
</nav>
3737

3838
<div id="map">
39-
<div [ngBusy]="{busy: isLoading(), message: getStatus(), backdrop: false, delay: 500, minDuration: 500}"
40-
*ngIf="isLoading()"></div>
4139
<navigator></navigator>
4240
<toolbar></toolbar>
4341
</div>

public_src/components/app/app.component.ts

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -92,10 +92,6 @@ export class AppComponent {
9292
this.helpModal.show();
9393
}
9494

95-
private getStatus(): string {
96-
return this.loadSrv.getStatus();
97-
}
98-
9995
private changeMode(): void {
10096
localStorage.setItem('advancedMode', JSON.stringify(this.advancedMode));
10197
}

tslint.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,6 @@
6161
"@angular",
6262
"angulartics2/piwik",
6363
"zone.js",
64-
"angular2-busy",
6564
"bootstrap",
6665
"dragula",
6766
"font-awesome",

yarn.lock

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -520,10 +520,6 @@ amqplib@^0.5.2:
520520
readable-stream "1.x >=1.1.9"
521521
safe-buffer "^5.0.1"
522522

523-
524-
version "2.0.4"
525-
resolved "https://registry.yarnpkg.com/angular2-busy/-/angular2-busy-2.0.4.tgz#82e4b1fbbcaf97bcfac09d237489cfe9e8c4b9f3"
526-
527523
528524
version "5.1.1"
529525
resolved "https://registry.yarnpkg.com/angulartics2/-/angulartics2-5.1.1.tgz#f4becf2ccaa97b5ef8925922a224f44af56870ec"

0 commit comments

Comments
 (0)