summaryrefslogtreecommitdiffstats
path: root/core/js
diff options
context:
space:
mode:
authorMichael Gapczynski <mtgap@owncloud.com>2013-02-25 20:52:01 -0500
committerMichael Gapczynski <mtgap@owncloud.com>2013-02-25 20:52:01 -0500
commit5b732ac1eab641c02a376ec15ce7ada1aeb3e6b0 (patch)
tree16809e2facf2c7686b3326a8db766cf0756c29af /core/js
parentaa2ea9e3de6002a8b58adf122a4562ed478c2a81 (diff)
downloadnextcloud-server-5b732ac1eab641c02a376ec15ce7ada1aeb3e6b0.tar.gz
nextcloud-server-5b732ac1eab641c02a376ec15ce7ada1aeb3e6b0.zip
Move space
Diffstat (limited to 'core/js')
-rw-r--r--core/js/share.js8
1 files changed, 4 insertions, 4 deletions
diff --git a/core/js/share.js b/core/js/share.js
index faa64103b7b..f8a8e0ee35a 100644
--- a/core/js/share.js
+++ b/core/js/share.js
@@ -26,7 +26,7 @@ OC.Share={
var action = $(file).find('.fileactions .action').filterAttr('data-action', 'Share');
var img = action.find('img').attr('src', image);
action.addClass('permanent');
- action.html(t('core', ' Shared')).prepend(img);
+ action.html(' '+t('core', 'Shared')).prepend(img);
}
var dir = $('#dir').val();
if (dir.length > 1) {
@@ -40,7 +40,7 @@ OC.Share={
if (img.attr('src') != OC.imagePath('core', 'actions/public')) {
img.attr('src', image);
action.addClass('permanent');
- action.html(t('core', ' Shared')).prepend(img);
+ action.html(' '+t('core', 'Shared')).prepend(img);
}
}
last = path;
@@ -87,10 +87,10 @@ OC.Share={
var img = action.find('img').attr('src', image);
if (shares) {
action.addClass('permanent');
- action.html(t('core', ' Shared')).prepend(img);
+ action.html(' '+t('core', 'Shared')).prepend(img);
} else {
action.removeClass('permanent');
- action.html(t('core', ' Share')).prepend(img);
+ action.html(' '+t('core', 'Share')).prepend(img);
}
}
if (shares) {