changeset 419:8d6b3c941a78

Remove use of sidebar. Currently no way to perform an analysis.
author Lucas Thompson <dev@lucas.im>
date Tue, 06 Jun 2017 13:15:27 +0100
parents b10e954c4ddd
children 8a866ee7c75f
files src/app/app.component.html
diffstat 1 files changed, 5 insertions(+), 13 deletions(-) [+]
line wrap: on
line diff
--- a/src/app/app.component.html	Tue Jun 06 13:15:05 2017 +0100
+++ b/src/app/app.component.html	Tue Jun 06 13:15:27 2017 +0100
@@ -18,24 +18,16 @@
         (fileOpened)="onFileOpened($event)"
       ></ugly-audio-file-open>
       <!-- menu opens when trigger button is clicked -->
-      <button md-icon-button (click)="sidenav.toggle()">
+      <button md-icon-button>
         <md-icon>extension</md-icon>
       </button>
     </md-toolbar>
   </div>
 
   <div class="ugly-content">
-    <md-sidenav-container>
-      <md-sidenav #sidenav align="start" mode="over">
-        <ugly-feature-extraction-menu
-          (requestOutput)="extractFeatures($event)"
-          [disabled]="!canExtract">
-        </ugly-feature-extraction-menu>
-      </md-sidenav>
-      <ugly-notebook-feed
-        [analyses]="analyses.toIterable()"
-        [rootAudioUri]="rootAudioItem.uri"
-        [onSeek]="onSeek"></ugly-notebook-feed>
-    </md-sidenav-container>
+    <ugly-notebook-feed
+      [analyses]="analyses.toIterable()"
+      [rootAudioUri]="rootAudioItem.uri"
+      [onSeek]="onSeek"></ugly-notebook-feed>
   </div>
 </div>