Prevent flashing the full sized image when cropping an avatar

Signed-off-by: Robin Appelman <robin@icewind.nl>
This commit is contained in:
Robin Appelman 2016-10-20 15:57:34 +02:00
parent ed4ed7911a
commit 5a44b70efc
No known key found for this signature in database
GPG Key ID: 425003AC385454C5
1 changed files with 5 additions and 2 deletions

View File

@ -129,8 +129,9 @@ function updateAvatar (hidedefault) {
function showAvatarCropper () {
var $cropper = $('#cropper');
$cropper.prepend("<img>");
var $cropperImage = $('#cropper img');
var $cropperImage = $('<img/>');
$cropperImage.css('opacity', 0);
$cropper.prepend($cropperImage);
$cropperImage.attr('src',
OC.generateUrl('/avatar/tmp') + '?requesttoken=' + encodeURIComponent(oc_requesttoken) + '#' + Math.floor(Math.random() * 1000));
@ -147,6 +148,8 @@ function showAvatarCropper () {
boxHeight: 500,
boxWidth: 500,
setSelect: [0, 0, 300, 300]
}, function() {
$cropperImage.css('opacity', 1);
});
});
}