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:
parent
8563ab94aa
commit
a12560d8c5
|
@ -67,6 +67,7 @@ function updateAvatar (hidedefault) {
|
||||||
$('#removeavatar').removeClass('hidden').addClass('inlineblock');
|
$('#removeavatar').removeClass('hidden').addClass('inlineblock');
|
||||||
}
|
}
|
||||||
}, user.displayName);
|
}, user.displayName);
|
||||||
|
$('#uploadavatar').prop('disabled', false);
|
||||||
}
|
}
|
||||||
|
|
||||||
function showAvatarCropper () {
|
function showAvatarCropper () {
|
||||||
|
@ -308,7 +309,7 @@ $(document).ready(function () {
|
||||||
function (path) {
|
function (path) {
|
||||||
$('#displayavatar img').hide();
|
$('#displayavatar img').hide();
|
||||||
$('#displayavatar .avatardiv').addClass('icon-loading');
|
$('#displayavatar .avatardiv').addClass('icon-loading');
|
||||||
$('#uploadavatar').prop('disabled', true)
|
$('#uploadavatar').prop('disabled', true);
|
||||||
$.ajax({
|
$.ajax({
|
||||||
type: "POST",
|
type: "POST",
|
||||||
url: OC.generateUrl('/avatar/'),
|
url: OC.generateUrl('/avatar/'),
|
||||||
|
@ -348,7 +349,7 @@ $(document).ready(function () {
|
||||||
$('#abortcropperbutton').click(function () {
|
$('#abortcropperbutton').click(function () {
|
||||||
$('#displayavatar .avatardiv').removeClass('icon-loading');
|
$('#displayavatar .avatardiv').removeClass('icon-loading');
|
||||||
$('#displayavatar img').show();
|
$('#displayavatar img').show();
|
||||||
$('#uploadavatar').prop('disabled', false)
|
$('#uploadavatar').prop('disabled', false);
|
||||||
cleanCropper();
|
cleanCropper();
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue