Re-enable upload button after updating Avatar fixes #8623

Signed-off-by: Tobia De Koninck <LEDfan@users.noreply.github.com>
This commit is contained in:
Tobia De Koninck 2018-08-24 15:15:16 +02:00
parent 8563ab94aa
commit a12560d8c5
1 changed files with 3 additions and 2 deletions

View File

@ -67,6 +67,7 @@ function updateAvatar (hidedefault) {
$('#removeavatar').removeClass('hidden').addClass('inlineblock');
}
}, user.displayName);
$('#uploadavatar').prop('disabled', false);
}
function showAvatarCropper () {
@ -308,7 +309,7 @@ $(document).ready(function () {
function (path) {
$('#displayavatar img').hide();
$('#displayavatar .avatardiv').addClass('icon-loading');
$('#uploadavatar').prop('disabled', true)
$('#uploadavatar').prop('disabled', true);
$.ajax({
type: "POST",
url: OC.generateUrl('/avatar/'),
@ -348,7 +349,7 @@ $(document).ready(function () {
$('#abortcropperbutton').click(function () {
$('#displayavatar .avatardiv').removeClass('icon-loading');
$('#displayavatar img').show();
$('#uploadavatar').prop('disabled', false)
$('#uploadavatar').prop('disabled', false);
cleanCropper();
});