Mercurial > hg > ugly-duckling
view src/app/feature-extraction-menu/feature-extraction-menu.component.html @ 71:0980eb001bde
Add a temp button for loading remote libraries.
author | Lucas Thompson <dev@lucas.im> |
---|---|
date | Wed, 18 Jan 2017 10:14:05 +0000 |
parents | af0b4b05311c |
children | bf8826d4e2c6 |
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> <p> <button md-raised-button (click)="load()">Load Remote Plugins</button> </p>