summaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
authorMichael Gapczynski <mtgap@owncloud.com>2012-06-29 16:29:58 -0400
committerMichael Gapczynski <mtgap@owncloud.com>2012-06-29 16:29:58 -0400
commit05cb94801ad9d73e50b800b6a940e4fd15518b40 (patch)
treefaf267052b639132c1513ada25b4cd98c2bf627d /core
parent719c7f7f6ebfe53a73eeffb07c6c23d6a788e711 (diff)
downloadnextcloud-server-05cb94801ad9d73e50b800b6a940e4fd15518b40.tar.gz
nextcloud-server-05cb94801ad9d73e50b800b6a940e4fd15518b40.zip
Add new group to other user's group select forms
Diffstat (limited to 'core')
-rw-r--r--core/js/multiselect.js5
1 files changed, 3 insertions, 2 deletions
diff --git a/core/js/multiselect.js b/core/js/multiselect.js
index db5afa637c9..ba89c1bb563 100644
--- a/core/js/multiselect.js
+++ b/core/js/multiselect.js
@@ -35,6 +35,7 @@
}
button.click(function(event){
+
var button=$(this);
if(button.parent().children('ul').length>0){
button.parent().children('ul').slideUp(400,function(){
@@ -136,11 +137,11 @@
var option=$('<option selected="selected"/>');
option.attr('value',$(this).val());
option.text($(this).val());
- select.append(options);
+ select.append(option);
li.prev().children('input').trigger('click');
button.parent().data('preventHide',false);
if(settings.createCallback){
- settings.createCallback();
+ settings.createCallback($(this).val());
}
}
});