Created
June 25, 2017 09:46
-
-
Save Armenvardanyan95/c534dbdac5bdcc3b69e6b013e70350b0 to your computer and use it in GitHub Desktop.
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
| @Component({ | |
| selector: 'some-component', | |
| template: ` | |
| <p-lightbox [images]="images"></p-lightbox> | |
| ` | |
| }) | |
| class SomeComponent { | |
| images = [ | |
| {source: 'img.jpg', thumbnail: 'small-img.jpg'}, | |
| {source: 'img2.jpg', thumbnail: 'small-img2.jpg'} | |
| ]; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment