view src/app/feature-extraction-menu/feature-extraction-menu.component.html @ 236:53ea6406d601

Generate new project with latest @angular/cli, including Angular 4.
author Lucas Thompson <dev@lucas.im>
date Tue, 25 Apr 2017 20:01:09 +0100
parents bf8826d4e2c6
children 51803e9a42ca
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(extractorSelect)">Load Remote Plugins</button>
  </p>
</div>