Mercurial > hg > ugly-duckling
view src/app/feature-extraction-menu/feature-extraction-menu.component.html @ 51:8619f25ff52a
Communicate new features being extracted via subscriptions to the stream in FeatureExtractionService.
author | Lucas Thompson <dev@lucas.im> |
---|---|
date | Tue, 06 Dec 2016 14:19:03 +0000 |
parents | af0b4b05311c |
children | 0980eb001bde |
line wrap: on
line source
<select id="extractor-outputs" #extractorOutputs> <option selected></option> <option *ngFor="let extractor of extractors" value="{{extractor.combinedKey}}"> {{extractor.name}} </option> </select> <p> <button md-raised-button color="primary" (click)="extract(extractorOutputs.value)" [disabled]="disabled">Extract</button> </p>