Browse Source

Merge pull request #8585 from nextcloud/avatar-loading-disable-fix

Prevent double selection of avatar and loading fix
pull/8605/head
Roeland Jago Douma 9 years ago
committed by GitHub
parent
commit
effc00c940
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 11
      settings/js/settings/personalInfo.js

11
settings/js/settings/personalInfo.js

@ -311,11 +311,14 @@ $(document).ready(function () {
submit: function(e, data) {
$('#displayavatar img').hide();
$('#displayavatar .avatardiv').addClass('icon-loading');
$('#uploadavatar').prop('disabled', true)
data.formData = _.extend(data.formData || {}, {
requesttoken: OC.requestToken
});
},
fail: function (e, data){
fail: function (e, data) {
$('#displayavatar .avatardiv').removeClass('icon-loading');
$('#uploadavatar').prop('disabled', false)
var msg = data.jqXHR.statusText + ' (' + data.jqXHR.status + ')';
if (!_.isUndefined(data.jqXHR.responseJSON) &&
!_.isUndefined(data.jqXHR.responseJSON.data) &&
@ -338,7 +341,8 @@ $(document).ready(function () {
t('settings', "Select a profile picture"),
function (path) {
$('#displayavatar img').hide();
$('#displayavatar .avatardiv').addClass('loading');
$('#displayavatar .avatardiv').addClass('icon-loading');
$('#uploadavatar').prop('disabled', true)
$.ajax({
type: "POST",
url: OC.generateUrl('/avatar/'),
@ -376,8 +380,9 @@ $(document).ready(function () {
});
$('#abortcropperbutton').click(function () {
$('#displayavatar .avatardiv').removeClass('loading');
$('#displayavatar .avatardiv').removeClass('icon-loading');
$('#displayavatar img').show();
$('#uploadavatar').prop('disabled', false)
cleanCropper();
});

Loading…
Cancel
Save