Mercurial > hg > ugly-duckling
view src/app/feature-extraction-menu/feature-extraction-menu.component.html @ 349:bf038a51f7e3
Restore some of the feature related logic from waveform.component into a utilities module. Introduce some additional types for representing reshaped features. A work in progress.
author | Lucas Thompson <dev@lucas.im> |
---|---|
date | Thu, 25 May 2017 17:57:03 +0100 |
parents | 077b57d64bbd |
children | 4387175f594b |
line wrap: on
line source
<div class="container"> <md-select #extractorSelect placeholder="Extractors"> <md-option *ngFor="let extractor of extractors" [value]="extractor.combinedKey" > {{extractor.name}} </md-option> </md-select> <p> <button md-raised-button color="primary" (click)="extract(getFirstSelectedItemOrEmpty(extractorSelect))" [disabled]="disabled">Extract</button> </p> <p> <button md-raised-button (click)="load()">Load Remote Plugins</button> </p> </div>