Mercurial > hg > ugly-duckling
diff src/app/feature-extraction-menu/feature-extraction-menu.component.html @ 47:933c64ebcd13
Some extraction logic in place.
author | Lucas Thompson <dev@lucas.im> |
---|---|
date | Mon, 05 Dec 2016 16:57:34 +0000 |
parents | 88052122ec01 |
children | af0b4b05311c |
line wrap: on
line diff
--- a/src/app/feature-extraction-menu/feature-extraction-menu.component.html Mon Dec 05 11:59:22 2016 +0000 +++ b/src/app/feature-extraction-menu/feature-extraction-menu.component.html Mon Dec 05 16:57:34 2016 +0000 @@ -1,9 +1,11 @@ -<select id="extractor-outputs"> +<select id="extractor-outputs" #extractorOutputs> <option selected></option> - <option *ngFor="let extractor of extractors" value="{{extractor.key}}"> + <option *ngFor="let extractor of extractors" value="{{extractor.combinedKey}}"> {{extractor.name}} </option> </select> <p> - <button md-raised-button color="primary">Extract</button> + <button md-raised-button + color="primary" + (click)="extract(extractorOutputs.value)">Extract</button> </p>