Having trouble uploading a file using Win7 and Safari with the ng-file-upload
feature in Angular.js. Below is my code:
<div ng-repeat="mul in mulImage">
<input type="file" class="filestyle form-control" data-size="lg" name="upload_{{$index}}" id="bannerimage_{{$index}}" ng-model="mul.image" ngf-pattern="'image/*'" accept="image/*" ngf-max-size="2MB" ngf-select="onFileSelect1($index);">
<img ngf-thumbnail="mul.image" name="pro" border="0" style="width:32px; height:32px; border:#808080 1px solid;" ng-if="mul.image !=null">
</div>
Currently unable to display selected image after choosing from drive. Need it to show in image tag once user selects an image. Works fine in all browsers except for Win7 and Safari.