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.
$(document).ready(function(){
if (OC.currentUser) {
- // Personal settings
- $('#avatar .avatardiv').avatar(OC.currentUser, 128);
+
}
// User settings
$.each($('td.avatar .avatardiv'), function(i, element) {
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) {