diff src/app/app.module.ts @ 115:c02c76b94148

Basic spinner for indicating loading of files and features - the flag used for tracking state is mostly redundant (it is usually !canExtract... apart from initial state)... but going with this for now.
author Lucas Thompson <dev@lucas.im>
date Tue, 14 Mar 2017 16:11:40 +0000
parents edddb2a5cf10
children 262995cfd3e6
line wrap: on
line diff
--- a/src/app/app.module.ts	Mon Mar 13 15:46:24 2017 +0000
+++ b/src/app/app.module.ts	Tue Mar 14 16:11:40 2017 +0000
@@ -11,6 +11,7 @@
 import { AudioPlayerService } from "./services/audio-player/audio-player.service";
 import { FeatureExtractionService } from "./services/feature-extraction/feature-extraction.service";
 import { FeatureExtractionMenuComponent } from "./feature-extraction-menu/feature-extraction-menu.component";
+import { ProgressSpinnerComponent } from "./progress-spinner/progress-spinner.component";
 
 export function createAudioContext(): AudioContext {
   return new (
@@ -29,7 +30,8 @@
     WaveformComponent,
     AudioFileOpenComponent,
     PlaybackControlComponent,
-    FeatureExtractionMenuComponent
+    FeatureExtractionMenuComponent,
+    ProgressSpinnerComponent
   ],
   imports: [
     BrowserModule,