Need some assistance with displaying JSON data that is being repeated using ng-repeat.
{
"title": "image title",
"description": "Lorem ipsum dolor sit amet, per ea ferri platonem voluptaria, ea eum ubique ornatus interpretaris. Dolore erroribus reprimique ex mea, mei soluta iisque cu, cu eam repudiare iracundia. Te cum populo molestie noluisse. Cu graece propriae eum, at qui erat oportere, ad wisi consequat persecuti pri. Ne usu partem discere, quas aliquam id cum. Tation numquam sensibus pri ne, his cibo noluisse scriptorem in.",
"imageUrl": "http://some.url.com",
"tags": "Apple, Orange, Banana, Pear, Grapes, Peach",
"owner": "some name",
"thumbnailUrl": "http://some.url.com"
},
The index page only displays the thumbnailUrl, but I would like to pass the object to a new template when clicking on the image to show the description and author information.
Tried implementing different examples without success. Any guidance or solutions would be greatly appreciated.