Basically i have a link, and when it\'s clicked, i display a modal. Now i can display other properties on the modal like title except the background Image ! urghhh !
You have made some mistakes using single quotes, you have to take your variable outside the single quotes.
For this div
This part is being treated as a string
'url({{selectedMeal.url}})'
Whereas you would want angular to parse this variable
{{selectedMeal.url}}
So to solve this, the correct syntax is