aboutsummaryrefslogtreecommitdiffstats
path: root/src/app/app.module.ts
diff options
context:
space:
mode:
authorSandeep J <sandeejh@in.ibm.com>2018-07-20 15:56:31 +0530
committerTakamune Cho <tc012c@att.com>2018-07-31 20:07:29 +0000
commit77ebde8e73fa4f1cdeeeff2c5d3f044b900bf329 (patch)
tree7c8f5f5c9adfe9ae4234827ab076ea0d0a251ccb /src/app/app.module.ts
parent2066d644125287c4b9f2128376e59ce15ab8a194 (diff)
added progress spinner for spreadsheet upload
added progress spinner for spreadsheet upload in test.component,ts Issue-ID: APPC-1102 Change-Id: I9d030da990eae2e8efe5ae82cd1afd3c675aa286 Signed-off-by: Sandeep J <sandeejh@in.ibm.com>
Diffstat (limited to 'src/app/app.module.ts')
-rw-r--r--src/app/app.module.ts6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/app/app.module.ts b/src/app/app.module.ts
index 2be6544..fcff1d5 100644
--- a/src/app/app.module.ts
+++ b/src/app/app.module.ts
@@ -5,7 +5,8 @@ Copyright (C) 2018 AT&T Intellectual Property. All rights reserved.
Copyright (C) 2018 IBM Intellectual Property. All rights reserved.
===================================================================
-
+Copyright (C) 2018 IBM.
+===================================================================
Unless otherwise specified, all software contained herein is licensed
under the Apache License, Version 2.0 (the License);
you may not use this software except in compliance with the License.
@@ -39,11 +40,12 @@ import { AboutUsComponent } from './about-us/aboutus.component';
import { NgProgressModule } from 'ngx-progressbar';
import { LoginGuardService } from './vnfs/LoginGuardService/Login-guard-service';
import { ConfirmComponent } from './shared/confirmModal/confirm.component';
+import { NgxSpinnerModule } from 'ngx-spinner';
@NgModule({
declarations: [AppComponent, TestComponent, AboutUsComponent, ConfirmComponent],
imports: [BrowserModule, FormsModule, HomeModule, SharedModule.forRoot(),
- NgbModule.forRoot(), NoopAnimationsModule, AppRoutingModule, SimpleNotificationsModule, NgProgressModule, BootstrapModalModule],
+ NgbModule.forRoot(), NoopAnimationsModule, AppRoutingModule, SimpleNotificationsModule, NgProgressModule, BootstrapModalModule, NgxSpinnerModule],
exports: [RouterModule],
providers: [{ provide: LocationStrategy, useClass: HashLocationStrategy }, LoginGuardService],
entryComponents: [ConfirmComponent],