aboutsummaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorJan-Christoph Borchardt <hey@jancborchardt.net>2017-11-14 11:55:44 +0100
committerJan-Christoph Borchardt <hey@jancborchardt.net>2017-11-14 11:55:44 +0100
commit1c5586adab8245c7f6f709fe191418c1f6f40af7 (patch)
treec0859783b0721451538d84b9ad0e430882ebed8f /apps
parent28e8a1c4b0704564fc8a89d9470b135a94a88b67 (diff)
downloadnextcloud-server-1c5586adab8245c7f6f709fe191418c1f6f40af7.tar.gz
nextcloud-server-1c5586adab8245c7f6f709fe191418c1f6f40af7.zip
Fix tooltip placement in Shared files list
Signed-off-by: Jan-Christoph Borchardt <hey@jancborchardt.net>
Diffstat (limited to 'apps')
-rw-r--r--apps/files/js/filelist.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files/js/filelist.js b/apps/files/js/filelist.js
index 6e90f30fcf1..03e9c138efb 100644
--- a/apps/files/js/filelist.js
+++ b/apps/files/js/filelist.js
@@ -1285,7 +1285,7 @@
fileData.extraData = fileData.extraData.substr(1);
}
nameSpan.addClass('extra-data').attr('title', fileData.extraData);
- nameSpan.tooltip({placement: 'right'});
+ nameSpan.tooltip({placement: 'top'});
}
// dirs can show the number of uploaded files
if (mime === 'httpd/unix-directory') {