diff options
author | Morris Jobke <hey@morrisjobke.de> | 2017-11-14 13:46:01 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-11-14 13:46:01 +0100 |
commit | 2a39ac043e1bcb42111e7f442814d6f11522365b (patch) | |
tree | 488e7ae4fd815fee3dafec8375c8831a8a234e74 | |
parent | 48710a6e5a3c9ec442c122aa9e17863543beaf7b (diff) | |
parent | 1c5586adab8245c7f6f709fe191418c1f6f40af7 (diff) | |
download | nextcloud-server-2a39ac043e1bcb42111e7f442814d6f11522365b.tar.gz nextcloud-server-2a39ac043e1bcb42111e7f442814d6f11522365b.zip |
Merge pull request #7164 from nextcloud/tooltip-placement
Fix tooltip placement in Shared files list
-rw-r--r-- | apps/files/js/filelist.js | 2 |
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') { |