Upload Button and reset progress
This commit is contained in:
parent
77ba8021bc
commit
e25b446b3d
1 changed files with 14 additions and 1 deletions
|
@ -19,6 +19,10 @@ mainApp.controller('editImageCtrl', ['$scope', 'Image', 'Loading', 'Identity', '
|
||||||
$scope.data.visibility = image.visibility;
|
$scope.data.visibility = image.visibility;
|
||||||
|
|
||||||
$scope.axioms = axioms;
|
$scope.axioms = axioms;
|
||||||
|
$('#progress .bar').css(
|
||||||
|
'width',
|
||||||
|
'0%'
|
||||||
|
);
|
||||||
$('#editImageModal').modal('show');
|
$('#editImageModal').modal('show');
|
||||||
$("#fileupload").fileupload({
|
$("#fileupload").fileupload({
|
||||||
formData: {task: "image", token: Identity.getToken(), action: "uploadImage", id: $scope.data.id},
|
formData: {task: "image", token: Identity.getToken(), action: "uploadImage", id: $scope.data.id},
|
||||||
|
@ -29,7 +33,16 @@ mainApp.controller('editImageCtrl', ['$scope', 'Image', 'Loading', 'Identity', '
|
||||||
'width',
|
'width',
|
||||||
progress + '%'
|
progress + '%'
|
||||||
);
|
);
|
||||||
}
|
},
|
||||||
|
add: function (e, data) {
|
||||||
|
data.process();
|
||||||
|
data.context = $('<button/>').text('Upload')
|
||||||
|
.click(function () {
|
||||||
|
$(this).detach();
|
||||||
|
data.submit();
|
||||||
|
});
|
||||||
|
$("#fileupload").after(data.context);
|
||||||
|
},
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue