diff options
author | Morris Jobke <hey@morrisjobke.de> | 2018-07-25 00:07:37 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-07-25 00:07:37 +0200 |
commit | a96137ef0bbe707d58227e0635209cf28f78e934 (patch) | |
tree | 09b147d8773f2dfad5af7a90f69eab02ac32c199 /apps/files/js/filelist.js | |
parent | f5e4fcadd99a734939f4a0ff09325c6171a6792c (diff) | |
parent | fe2509231213409238c8243c8211bcab0bc4a00b (diff) | |
download | nextcloud-server-a96137ef0bbe707d58227e0635209cf28f78e934.tar.gz nextcloud-server-a96137ef0bbe707d58227e0635209cf28f78e934.zip |
Merge pull request #10310 from nextcloud/accessibility-header
Accessibility fixes for header and global elements
Diffstat (limited to 'apps/files/js/filelist.js')
-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 fd20ebe8321..f44a36435a1 100644 --- a/apps/files/js/filelist.js +++ b/apps/files/js/filelist.js @@ -678,7 +678,7 @@ this.updateSelectionSummary(); } else { // clicked directly on the name - if (!this._detailsView || $(event.target).is('.nametext') || $(event.target).closest('.nametext').length) { + if (!this._detailsView || $(event.target).is('.nametext, .name') || $(event.target).closest('.nametext').length) { var filename = $tr.attr('data-file'); var renaming = $tr.data('renaming'); if (!renaming) { |