I've encountered an issue with my image viewer in AngularJS. While I have successfully implemented the viewer, all I see is a zoomed-in version of the image instead of the actual one. Can anyone help me figure out why?
Here is the code I am using: http://plnkr.co/edit/eemTIHAON9T6nXf31D8C?p=preview
This is the output I'm getting (Zoomed image)
https://i.sstatic.net/6TJH0.png
What I'm expecting is the full image without it being zoomed in
https://i.sstatic.net/niNmy.png
Here's a snippet of the controller code:
app.controller('MainCtrl', function($scope, $timeout) {
$scope.ca='https://evportal.airtel.com/sharedimages/Postpaid/93c4e50b-10a7-4717-b976-592b74bc2d371541256937292_poa_front_image.jpeg'
})