23 lines
785 B
JavaScript
23 lines
785 B
JavaScript
/**
|
|
* 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');
|
|
});
|
|
$scope.data = {};
|
|
$scope.data.visibility = "public";
|
|
$scope.data.protected = false;
|
|
|
|
$scope.applyEdition = function (image) {
|
|
image.visibility = $scope.data.visibility;
|
|
image.protected = $scope.data.protected;
|
|
Image.updateImage(image, function(){});
|
|
|
|
};
|
|
}]);
|