Remove users and groups from the select form that have already been shared with

This commit is contained in:
Michael Gapczynski 2011-08-09 11:00:14 -04:00
parent c654442901
commit 7c840e9bbb
1 changed files with 2 additions and 0 deletions

View File

@ -140,6 +140,7 @@ function createShareDropdown(filenames, files) {
if (users) {
var list = "<ul>";
$.each(users, function(index, row) {
$('#uid_shared_with option[value="'+row.uid_shared_with+'"]').remove();
if (typeof(index) == 'string') {
// TODO typeof not always working, group together users that have parent folders shared with them
list += "<li>Parent folder "+index.substr(0, index.lastIndexOf('-'))+" shared with "+row.uid_shared_with+"</li>";
@ -158,6 +159,7 @@ function createShareDropdown(filenames, files) {
});
list += "</ul>";
$(list).appendTo('#shared_list');
$('#uid_shared_with').trigger('liszt:updated');
}
});
$.getJSON(OC.linkTo('files_publiclink', 'ajax/getlink.php'), { path: files }, function(token) {