Browse Source
Merge pull request #7164 from nextcloud/tooltip-placement
Fix tooltip placement in Shared files list
pull/7166/head
Morris Jobke
8 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
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') { |
|
|
|
|