Using a solution I found in a related question ( How do you use $sce.trustAsHtml(string) to replicate ng-bind-html-unsafe in Angular 1.2+)
The Filter answer on that page seems to be best.
app.filter('unsafe', function($sce) {
return function(val) {
return $sce.trustAsHtml(val);
};
});
My images appear in IE 10, however they don't appear in Chrome or Safari. Can someone please help me understand why? To see my dilemma,go to http://groceryads.com and select a city from the dropdown.
Thanks in advance.