1
0
mirror of https://github.com/bpatrik/pigallery2.git synced 2024-12-16 11:37:13 +02:00
pigallery2/frontend/app/gallery/grid/grid.gallery.component.html

13 lines
377 B
HTML
Raw Normal View History

2016-06-25 14:13:06 +02:00
<div #gridContainer>
2018-05-04 01:17:08 +02:00
<app-gallery-grid-photo
2018-03-30 21:30:30 +02:00
*ngFor="let gridPhoto of photosToRender"
(click)="lightbox.show(gridPhoto.photo)"
[gridPhoto]="gridPhoto"
[style.width.px]="gridPhoto.renderWidth"
[style.height.px]="gridPhoto.renderHeight"
[style.marginLeft.px]="IMAGE_MARGIN"
[style.marginRight.px]="IMAGE_MARGIN">
2018-05-04 01:17:08 +02:00
</app-gallery-grid-photo>
2018-03-30 21:30:30 +02:00
</div>