diff --git a/client/index.html b/client/index.html index 3dd501a..ad51d8d 100755 --- a/client/index.html +++ b/client/index.html @@ -10,6 +10,7 @@ + @@ -70,6 +71,9 @@ + + + diff --git a/client/js/controllers/image/edit.js b/client/js/controllers/image/edit.js old mode 100644 new mode 100755 index 776f88f..e1da271 --- a/client/js/controllers/image/edit.js +++ b/client/js/controllers/image/edit.js @@ -20,6 +20,17 @@ mainApp.controller('editImageCtrl', ['$scope', 'Image', 'Loading', 'Identity', ' $scope.axioms = axioms; $('#editImageModal').modal('show'); + $("#fileupload").fileupload({ + formData: {task: "image", token: Identity.getToken(), action: "uploadImage", id: $scope.data.id}, + /* ... */ + progressall: function (e, data) { + var progress = parseInt(data.loaded / data.total * 100, 10); + $('#progress .bar').css( + 'width', + progress + '%' + ); + } + }); }); $scope.applyEdition = function (id) { @@ -34,4 +45,6 @@ mainApp.controller('editImageCtrl', ['$scope', 'Image', 'Loading', 'Identity', ' $scope.getToken = function () { return Identity.getToken(); } + + }]); diff --git a/client/partials/image/edit.html b/client/partials/image/edit.html index 3b37c3b..d5c3621 100755 --- a/client/partials/image/edit.html +++ b/client/partials/image/edit.html @@ -34,7 +34,11 @@ -