Files
agent/src/components/layers/layers.component.html
2016-08-28 09:01:52 +02:00

8 lines
350 B
HTML

<div class="text-center">
<span class="uhk__layer-switcher--wrapper" data-title="Layers: ">
<button type="button" class="btn btn-default btn-lg" *ngFor="let button of buttons; let index = index" (click)="selectLayer(index)"
[class.btn-primary]="index === current">
{{ button }}
</button>
</span>
</div>