summaryrefslogtreecommitdiffstats
path: root/core/js
diff options
context:
space:
mode:
authorJan-Christoph Borchardt <hey@jancborchardt.net>2015-04-09 12:11:42 +0200
committerJan-Christoph Borchardt <hey@jancborchardt.net>2015-04-09 12:11:42 +0200
commit7f237223e521288e90726a606f390519f20c58e8 (patch)
tree8aa3c21fdb10ec34a5f890b86cf9531ffaaf9d94 /core/js
parent000b09ee7a4f6ee70ac7a02c5182d218eed91629 (diff)
downloadnextcloud-server-7f237223e521288e90726a606f390519f20c58e8.tar.gz
nextcloud-server-7f237223e521288e90726a606f390519f20c58e8.zip
fix remote share info icon for IE8
Diffstat (limited to 'core/js')
-rw-r--r--core/js/share.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/js/share.js b/core/js/share.js
index 646123a6055..29551654435 100644
--- a/core/js/share.js
+++ b/core/js/share.js
@@ -399,7 +399,7 @@ OC.Share={
html += '<label for="shareWith" class="hidden-visually">'+t('core', 'Share')+'</label>';
html += '<input id="shareWith" type="text" placeholder="' + sharePlaceholder + '" />';
if(oc_appconfig.core.remoteShareAllowed) {
- html += '<a target="_blank" class="icon-info shareWithRemoteInfo" '
+ html += '<a target="_blank" class="icon-info svg shareWithRemoteInfo" '
+ 'title="'+t('core', 'Share with people on other ownClouds using the syntax username@example.com/owncloud')+'" '
+ 'href="https://doc.owncloud.org/server/8.0/user_manual/files/federated_cloud_sharing.html"></a>';
}