From 5a44b70efccca4a5028dee26e09dfd00a9038f53 Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Thu, 20 Oct 2016 15:57:34 +0200 Subject: [PATCH] Prevent flashing the full sized image when cropping an avatar Signed-off-by: Robin Appelman --- settings/js/personal.js | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/settings/js/personal.js b/settings/js/personal.js index dbc82758fd1..9f4a4f377b3 100644 --- a/settings/js/personal.js +++ b/settings/js/personal.js @@ -129,8 +129,9 @@ function updateAvatar (hidedefault) { function showAvatarCropper () { var $cropper = $('#cropper'); - $cropper.prepend(""); - var $cropperImage = $('#cropper img'); + var $cropperImage = $(''); + $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); }); }); }