I would like to be able to manipulate some images around the screen but can't get it to work properly.
I'v tried using
$scope.data[i].style="{'width': '" + $scope.imageScale + "px'}"
in the controller, called when imageScale changes, with
<div class = "image" ng-repeat="image in data">
<img ng-src={{image.Filename}} ng-style="image.style">
</div>
located in the HTML.
Thanks