diff options
author | kondou <kondou@ts.unde.re> | 2013-08-30 09:00:37 +0200 |
---|---|---|
committer | kondou <kondou@ts.unde.re> | 2013-08-30 09:00:37 +0200 |
commit | ecf187393becc7dc613b4fd1322e40eb58f9f0fd (patch) | |
tree | 4e4b28955ae74fe81c4a6763ecd28ad4ac95cfe8 /core/js/avatar.js | |
parent | c533b8068292e2b265c3c73f3ad9e5de0e98a81d (diff) | |
download | nextcloud-server-ecf187393becc7dc613b4fd1322e40eb58f9f0fd.tar.gz nextcloud-server-ecf187393becc7dc613b4fd1322e40eb58f9f0fd.zip |
Finish cropper, Get rid of TODOs, Improve \OCP\Avatar and "fix" unitests
Diffstat (limited to 'core/js/avatar.js')
-rw-r--r-- | core/js/avatar.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/js/avatar.js b/core/js/avatar.js index 22ebf295999..afcd7e9f2ce 100644 --- a/core/js/avatar.js +++ b/core/js/avatar.js @@ -4,7 +4,7 @@ $(document).ready(function(){ $('#avatar .avatardiv').avatar(OC.currentUser, 128); // User settings $.each($('td.avatar .avatardiv'), function(i, data) { - $(data).avatar($(data).parent().parent().data('uid'), 32); // TODO maybe a better way of getting the current name … + $(data).avatar($(data).parent().parent().data('uid'), 32); // TODO maybe a better way of getting the current name … – may be fixed by new-user-mgmt }); - // TODO when creating a new user, he gets a previously used avatar + // TODO when creating a new user, he gets a previously used avatar – may be fixed by new user-mgmt }); |