Mercurial > hg > ugly-duckling
view src/app/feature-extraction-menu/feature-extraction-menu.component.html @ 473:de23ea6bcd0d
Add vertical binned scale for matrix shapes. Requires waves-ui-piper
update
author | Chris Cannam <cannam@all-day-breakfast.com> |
---|---|
date | Fri, 30 Jun 2017 12:08:50 +0100 |
parents | 55e17af8a0ee |
children | cf4a17efb5d4 |
line wrap: on
line source
<div class="container"> <md-list dense> <ng-container *ngFor="let extractor of extractors" > <h3 md-subheader>{{extractor.name}}</h3> <md-list-item *ngFor="let output of extractor.outputs" (click)="extract(output)"> <md-icon md-list-icon>{{getFeatureIconName(output)}}</md-icon> <h4 md-line>{{output.name}}</h4> <p md-line>{{output.combinedKey}}</p> <button md-icon-button (click)="extract(output); $event.stopPropagation()" [disabled]="disabled"> <md-icon>add</md-icon> </button> </md-list-item> <md-divider></md-divider> </ng-container> </md-list> <md-spinner *ngIf="isLoading"></md-spinner> <button md-button (click)="load()" [disabled]="isLoading" >Load more</button> </div>