Upload Button and reset progress

This commit is contained in:
Eole 2016-05-09 23:11:01 +02:00
parent 77ba8021bc
commit e25b446b3d

View file

@ -19,6 +19,10 @@ mainApp.controller('editImageCtrl', ['$scope', 'Image', 'Loading', 'Identity', '
$scope.data.visibility = image.visibility;
$scope.axioms = axioms;
$('#progress .bar').css(
'width',
'0%'
);
$('#editImageModal').modal('show');
$("#fileupload").fileupload({
formData: {task: "image", token: Identity.getToken(), action: "uploadImage", id: $scope.data.id},
@ -29,7 +33,16 @@ mainApp.controller('editImageCtrl', ['$scope', 'Image', 'Loading', 'Identity', '
'width',
progress + '%'
);
}
},
add: function (e, data) {
data.process();
data.context = $('<button/>').text('Upload')
.click(function () {
$(this).detach();
data.submit();
});
$("#fileupload").after(data.context);
},
});
});