view src/app/feature-extraction-menu/feature-extraction-menu.component.html @ 254:ff71da632fbb

Add highlight layer
author Chris Cannam <cannam@all-day-breakfast.com>
date Thu, 27 Apr 2017 16:41:04 +0100
parents 51803e9a42ca
children 077b57d64bbd
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(extractorSelect.selected.value)"
            [disabled]="disabled">Extract</button>
  </p>
  <p>
    <button md-raised-button
            (click)="load()">Load Remote Plugins</button>
  </p>
</div>