Merge pull request #43556 from nextcloud/fix/42364/allow-multi-select-for-files-when-clicking-checkbox

pull/43772/head
John Molakvoæ 3 months ago committed by GitHub
commit fc4b5fc1e9
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -396,7 +396,7 @@
self.do_delete(filename, directory);
});
this.$fileList.on('change', 'td.selection>.selectCheckBox', _.bind(this._onClickFileCheckbox, this));
this.$fileList.on('click', 'td.selection', _.bind(this._onClickFileCheckbox, this));
this.$fileList.on('mouseover', 'td.selection', _.bind(this._onMouseOverCheckbox, this));
this.$el.on('show', _.bind(this._onShow, this));
this.$el.on('urlChanged', _.bind(this._onUrlChanged, this));
@ -944,8 +944,10 @@
* Event handler for when clicking on a file's checkbox
*/
_onClickFileCheckbox: function(e) {
// to prevent double click, prevent default
e.preventDefault()
var $tr = $(e.target).closest('tr');
if(this._getCurrentSelectionMode() === 'range') {
if(this._allowSelection && e.shiftKey) {
this._selectRange($tr);
} else {
this._selectSingle($tr);

Loading…
Cancel
Save