Merge pull request #21259 from owncloud/load_big_avatar_only_personal

Only load the big (128x128) avatar on the perosnal page
This commit is contained in:
Thomas Müller 2015-12-17 16:07:50 +01:00
commit 3bcaaa6c3a
2 changed files with 6 additions and 2 deletions

View File

@ -1,7 +1,6 @@
$(document).ready(function(){
if (OC.currentUser) {
// Personal settings
$('#avatar .avatardiv').avatar(OC.currentUser, 128);
}
// User settings
$.each($('td.avatar .avatardiv'), function(i, element) {

View File

@ -405,6 +405,11 @@ $(document).ready(function () {
if ($('#sslCertificate > tbody > tr').length === 0) {
$('#sslCertificate').hide();
}
// Load the big avatar
if (oc_config.enable_avatars) {
$('#avatar .avatardiv').avatar(OC.currentUser, 128);
}
});
if (!OC.Encryption) {