view src/app/feature-extraction-menu/feature-extraction-menu.component.html @ 54:5fb857f8553b

Add a number of ad-hoc workarounds for bugs / quirks with waves-ui - regarding removing layers and avoiding ghost listeners. Still work to be done here.
author Lucas Thompson <dev@lucas.im>
date Thu, 08 Dec 2016 15:09:03 +0000
parents af0b4b05311c
children 0980eb001bde
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>