diff options
author | Sam Tuke <samtuke@owncloud.com> | 2012-06-25 16:57:41 +0100 |
---|---|---|
committer | Sam Tuke <samtuke@owncloud.com> | 2012-06-25 16:57:41 +0100 |
commit | 380f41136cf705de2df5101e42d89c9483e2c078 (patch) | |
tree | 008d79980fcdd33c21371f4ebc3e9a5ae924e79f /apps/files_sharing/js/share.js | |
parent | 9bb409d88196703b01aba1ef087c85f794ca564c (diff) | |
download | nextcloud-server-380f41136cf705de2df5101e42d89c9483e2c078.tar.gz nextcloud-server-380f41136cf705de2df5101e42d89c9483e2c078.zip |
Added placeholder msg to share with menu to clarify user list restricted to security context
Diffstat (limited to 'apps/files_sharing/js/share.js')
-rw-r--r-- | apps/files_sharing/js/share.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files_sharing/js/share.js b/apps/files_sharing/js/share.js index 96c9017dbf9..9194d2240ab 100644 --- a/apps/files_sharing/js/share.js +++ b/apps/files_sharing/js/share.js @@ -61,7 +61,7 @@ OC.Share={ OC.Share.loadItem(item); var html = '<div id="dropdown" class="drop" data-item="'+item+'">'; html += '<select data-placeholder="User or Group" id="share_with" class="chzen-select">'; - html += '<option value=""></option>'; + html += '<option value="" selected="selected" disabled="disabled">Your groups & members</option>'; html += '</select>'; html += '<div id="sharedWithList">'; html += '<ul id="userList"></ul>'; |