Only load the big (128x128) avatar on the perosnal page

Before the code was executed on every page if a user was logged in. Now
only on the personal page. Thus saving a request on all other pages.
This commit is contained in:
Roeland Jago Douma 2015-12-17 13:46:25 +01:00
parent 21bd19b6ae
commit a81836a42f
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) {