Created
June 19, 2018 10:44
-
-
Save Sampath-Lokuge/2eb2ca481582df94e785ff436dd6dd2d to your computer and use it in GitHub Desktop.
gallery.component.html
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="modal fade" id="selectedImageModal"> | |
<div class="modal-dialog" role="document"> | |
<div class="modal-content"> | |
<div class="modal-body"> | |
<div class="selectedImage" *ngIf="selectedImage"> | |
<img src="{{selectedImage.blobFileUrl}}" class="thumbnailImage" onerror="this.src='https://cpcpdev.blob.core.windows.net/other-documents/docx.png'"> | |
</div> | |
</div> | |
</div> | |
</div> | |
</div> | |
<div class="row"> | |
<div *ngFor="let image of dataCollection" class="col-md-3 col-sm-4 col-xs-6"> | |
<img class="img-responsive tn" src="{{image.blobFileUrl}}" onerror="this.src = 'https://cpcpdev.blob.core.windows.net/other-documents/docx.png'" data-toggle="modal" data-target="#selectedImageModal" (click)=setSelectedImage(image) /> | |
<div class="desc">{{image.name}}</div> | |
</div> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment