frontend-tutorial-framework/src/app/sidebar/sidebar.component.html
2018-05-11 18:00:26 +02:00

15 lines
474 B
HTML

<!-- Copyright (C) 2018 Avatao.com Innovative Learning Kft.
All Rights Reserved. See LICENSE file for details. -->
<div class="tfw-ide-pin" *ngFor="let layoutIter of enabledLayouts">
<div>
<button [class.active]="layout === layoutIter"
(active)="layout === layoutIter"
(focus)="layout === layoutIter"
(click)="setLayout(layoutIter)"
class="btn"><img src="images/{{layoutIter}}.svg"></button>
</div>
</div>