From dd28c9d3b5c425956ba05645d96ece6e4b0bf16c Mon Sep 17 00:00:00 2001 From: Sandeep J Date: Fri, 13 Jul 2018 13:22:42 +0530 Subject: added progress spinner while uploading template added progress spinner while uploading template file so that the user can know visually that the file is being uploaded Issue-ID: APPC-1069 Change-Id: I4d17a1f64a241dc3dc49154ec6c8abe7babb793a Signed-off-by: Sandeep J --- src/app/vnfs/vnfs.module.ts | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'src/app/vnfs/vnfs.module.ts') diff --git a/src/app/vnfs/vnfs.module.ts b/src/app/vnfs/vnfs.module.ts index c63d24a..c0f8158 100644 --- a/src/app/vnfs/vnfs.module.ts +++ b/src/app/vnfs/vnfs.module.ts @@ -3,6 +3,8 @@ =================================================================== Copyright (C) 2018 AT&T 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); @@ -27,7 +29,7 @@ import {CommonModule} from '@angular/common'; // modules import {VnfRoutingModule} from './vnf.routing'; import {SharedModule} from '../shared/shared.module'; - +import { NgxSpinnerModule } from 'ngx-spinner'; import {AceEditorComponent} from 'ng2-ace-editor'; // components import {MyvnfsComponent} from './myvnfs/myvnfs.component'; @@ -77,7 +79,7 @@ export const components = [ export const modules = [ CommonModule, VnfRoutingModule, SharedModule.forRoot(), - FormsModule, BootstrapModalModule, Ng2Bs3ModalModule, SimpleNotificationsModule.forRoot() + FormsModule, BootstrapModalModule, Ng2Bs3ModalModule, SimpleNotificationsModule.forRoot(),NgxSpinnerModule ]; -- cgit 1.2.3-korg