diff options
author | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2015-08-11 15:13:59 +0200 |
---|---|---|
committer | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2015-08-11 15:13:59 +0200 |
commit | d04a6bce6f81df4ee4351a311a630b14e8ecd8a3 (patch) | |
tree | aa37e75da3021abf7e9fff06c419e8cd1461970b /core/js/share.js | |
parent | cd0a2874de1f52827bca8d747128909099229cf4 (diff) | |
parent | 984ae8140d986e93a2fcea5951436e95c8e2c603 (diff) | |
download | nextcloud-server-d04a6bce6f81df4ee4351a311a630b14e8ecd8a3.tar.gz nextcloud-server-d04a6bce6f81df4ee4351a311a630b14e8ecd8a3.zip |
Merge pull request #17709 from owncloud/fileactions-dropdown
Move file actions to dropdown
Diffstat (limited to 'core/js/share.js')
-rw-r--r-- | core/js/share.js | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/core/js/share.js b/core/js/share.js index 99fd08c6411..57dd0dd6553 100644 --- a/core/js/share.js +++ b/core/js/share.js @@ -266,7 +266,6 @@ OC.Share={ if (hasShares || owner) { recipients = $tr.attr('data-share-recipients'); - action.addClass('permanent'); message = t('core', 'Shared'); // even if reshared, only show "Shared by" if (owner) { @@ -281,8 +280,7 @@ OC.Share={ } } else { - action.removeClass('permanent'); - action.html(' <span>'+ escapeHTML(t('core', 'Share'))+'</span>').prepend(img); + action.html('<span></span>').prepend(img); } if (hasLink) { image = OC.imagePath('core', 'actions/public'); |