From 77ba8021bc4d910afd4d4c9d0a9fe9077c9a00ea Mon Sep 17 00:00:00 2001 From: Eole Date: Mon, 9 May 2016 22:39:49 +0200 Subject: [PATCH] File Upload AJAX --- client/index.html | 4 ++++ client/js/controllers/image/edit.js | 13 +++++++++++++ client/partials/image/edit.html | 8 ++++++-- server/core/Image.php | 21 +++++++++++++-------- 4 files changed, 36 insertions(+), 10 deletions(-) mode change 100644 => 100755 client/js/controllers/image/edit.js 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 @@ -
+ +
+
+
+