Mercurial > hg > ugly-duckling
comparison 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 |
comparison
equal
deleted
inserted
replaced
46:88052122ec01 | 47:933c64ebcd13 |
---|---|
1 <select id="extractor-outputs"> | 1 <select id="extractor-outputs" #extractorOutputs> |
2 <option selected></option> | 2 <option selected></option> |
3 <option *ngFor="let extractor of extractors" value="{{extractor.key}}"> | 3 <option *ngFor="let extractor of extractors" value="{{extractor.combinedKey}}"> |
4 {{extractor.name}} | 4 {{extractor.name}} |
5 </option> | 5 </option> |
6 </select> | 6 </select> |
7 <p> | 7 <p> |
8 <button md-raised-button color="primary">Extract</button> | 8 <button md-raised-button |
9 color="primary" | |
10 (click)="extract(extractorOutputs.value)">Extract</button> | |
9 </p> | 11 </p> |