blob: bab4064b70aa70df3fc978cd0108079b6e0067fb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
/**
* The image controller
*
* @param {$scope} $scope The $scope service from angular
*/
mainApp.controller('editImageCtrl', ['$scope', 'Image', 'Loading', 'Identity', 'upload', function ($scope, Image, Loading, Identity, upload)
{
$scope.$on('editImageEvent', function (eventName, image,axioms) {
$scope.image = image;
$scope.axioms=axioms;
$('#editImageModal').modal('show');
console.log(image)
});
}]);
|