diff src/app/playback-control/playback-control.component.ts @ 256:6d128e43f4d5

Merge remote-tracking branch 'lucas/feature/determinate-spinner'
author Chris Cannam <cannam@all-day-breakfast.com>
date Fri, 28 Apr 2017 09:23:57 +0100
parents 53ea6406d601
children
line wrap: on
line diff
--- a/src/app/playback-control/playback-control.component.ts	Thu Apr 27 16:41:04 2017 +0100
+++ b/src/app/playback-control/playback-control.component.ts	Fri Apr 28 09:23:57 2017 +0100
@@ -1,16 +1,14 @@
 import {Component, OnInit} from '@angular/core';
-import {AudioPlayerService} from "../services/audio-player/audio-player.service";
-import {FeatureExtractionService} from "../services/feature-extraction/feature-extraction.service";
+import {AudioPlayerService} from '../services/audio-player/audio-player.service';
 
 @Component({
-  selector: 'app-playback-control',
+  selector: 'ugly-playback-control',
   templateUrl: './playback-control.component.html',
   styleUrls: ['./playback-control.component.css']
 })
 export class PlaybackControlComponent implements OnInit {
 
-  constructor(private audioService: AudioPlayerService,
-              private featureExtractionService: FeatureExtractionService) {
+  constructor(private audioService: AudioPlayerService) {
   }
 
   ngOnInit() {}