aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRobin Appelman <icewind1991@gmail.com>2011-12-11 23:32:57 +0100
committerRobin Appelman <icewind1991@gmail.com>2011-12-11 23:32:57 +0100
commitbd65c18f21ca973e90334f74e3325ae449194d42 (patch)
tree26a95ecdc63ec9878e9158cb46a1b254d26db7f7
parentb41ca8bacb8e1bdb9a28ab7e3e76b817262338d4 (diff)
downloadnextcloud-server-bd65c18f21ca973e90334f74e3325ae449194d42.tar.gz
nextcloud-server-bd65c18f21ca973e90334f74e3325ae449194d42.zip
also update the data attribute holding the quota
-rw-r--r--settings/js/users.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/settings/js/users.js b/settings/js/users.js
index 18e7a9df104..4fea52e4a1f 100644
--- a/settings/js/users.js
+++ b/settings/js/users.js
@@ -104,7 +104,7 @@ $(document).ready(function(){
{username:uid,quota:$(this).val()},
function(result){
img.parent().children('span').text(result.data.quota)
- alert(result.data.quota);
+ $(this).parent().attr('data-quota',result.data.quota);
}
);
input.blur();