mirror of
https://github.com/avatao-content/frontend-tutorial-framework
synced 2025-04-05 22:12:40 +00:00
15 lines
474 B
HTML
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>
|