Hi everyone,
I’ve a problem in iOS simulator with this code :
<div class="list">
<a ng-repeat="item in items"
class="item item-thumbnail-left item-avatar">
<img ng-src="{{item.PathToGCS}}">
<h2>{{ item.name }}</h2>
</a>
</div>
The image does not appear in iOS simulator, There is no error in the debug consol from safari. This code works well in any browser but not in the iOS simulator. I’ve put $compileProvider.imgSrcSanitizationWhitelist(/^\s*(https?|ftp|mailto|file|tel|content|blob):|data:image|/) in my main module config.
I’ve tried to load image from the local repository with a hardcoded path (img/img_name.png) and it works.
I’ve also tried with a hardcoded http path and it doesn’t works…
Any idea please ?
Thanks a lot