aboutsummaryrefslogtreecommitdiffstats
path: root/apps/files/js/filelist.js
diff options
context:
space:
mode:
authorThomas Müller <thomas.mueller@tmit.eu>2016-03-24 13:30:27 +0100
committerThomas Müller <thomas.mueller@tmit.eu>2016-03-24 13:30:27 +0100
commita7e7f5e18098ff0f536e58a7e1e5dfdc825e9086 (patch)
tree105922ec8ebf3402e426e17b07a2e5fffacb9430 /apps/files/js/filelist.js
parent24b6b8d31f0a9913b66be98d6d8391cd41e1a2f5 (diff)
parent50655cbf7f689c2926bbfbd007887ba5cad75c2a (diff)
downloadnextcloud-server-a7e7f5e18098ff0f536e58a7e1e5dfdc825e9086.tar.gz
nextcloud-server-a7e7f5e18098ff0f536e58a7e1e5dfdc825e9086.zip
Merge pull request #23511 from owncloud/sidebar-click
sidebar click modification
Diffstat (limited to 'apps/files/js/filelist.js')
-rw-r--r--apps/files/js/filelist.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/apps/files/js/filelist.js b/apps/files/js/filelist.js
index bfcc77d8999..842ec4aac73 100644
--- a/apps/files/js/filelist.js
+++ b/apps/files/js/filelist.js
@@ -271,7 +271,8 @@
this.updateSearch();
- this.$fileList.on('click','td.filename>a.name', _.bind(this._onClickFile, this));
+ this.$fileList.on('click','td.filename>a.name, td.filesize, td.date', _.bind(this._onClickFile, this));
+
this.$fileList.on('change', 'td.filename>.selectCheckBox', _.bind(this._onClickFileCheckbox, this));
this.$el.on('urlChanged', _.bind(this._onUrlChanged, this));
this.$el.find('.select-all').click(_.bind(this._onClickSelectAll, this));