Show (group) after groups in share dropdown
This commit is contained in:
parent
4ae1d08241
commit
8ac518bb3e
|
@ -262,7 +262,7 @@ OC.Share={
|
||||||
// Default permissions are Edit (CRUD) and Share
|
// Default permissions are Edit (CRUD) and Share
|
||||||
var permissions = OC.PERMISSION_ALL;
|
var permissions = OC.PERMISSION_ALL;
|
||||||
OC.Share.share(itemType, itemSource, shareType, shareWith, permissions, function() {
|
OC.Share.share(itemType, itemSource, shareType, shareWith, permissions, function() {
|
||||||
OC.Share.addShareWith(shareType, shareWith, selected.item.label, permissions, possiblePermissions);
|
OC.Share.addShareWith(shareType, shareWith, selected.item.value.shareWith, permissions, possiblePermissions);
|
||||||
$('#shareWith').val('');
|
$('#shareWith').val('');
|
||||||
OC.Share.updateIcon(itemType, itemSource);
|
OC.Share.updateIcon(itemType, itemSource);
|
||||||
});
|
});
|
||||||
|
@ -303,6 +303,9 @@ OC.Share={
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
addShareWith:function(shareType, shareWith, shareWithDisplayName, permissions, possiblePermissions, mailSend, collection) {
|
addShareWith:function(shareType, shareWith, shareWithDisplayName, permissions, possiblePermissions, mailSend, collection) {
|
||||||
|
if (shareType === 1) {
|
||||||
|
shareWithDisplayName = shareWithDisplayName + " (" + t('core', 'group') + ')';
|
||||||
|
}
|
||||||
if (!OC.Share.itemShares[shareType]) {
|
if (!OC.Share.itemShares[shareType]) {
|
||||||
OC.Share.itemShares[shareType] = [];
|
OC.Share.itemShares[shareType] = [];
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue