We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2332f25 commit 782efdfCopy full SHA for 782efdf
js/ui/cwd.js
@@ -2296,10 +2296,10 @@ $.fn.elfindercwd = function(fm, options) {
2296
2297
selectAllCheckbox = selectCheckbox? $('<div class="elfinder-cwd-selectall"><input type="checkbox"/></div>')
2298
.attr('title', fm.i18n('selectall'))
2299
- .on('touchstart mousedown click', function(e) {
+ .on('click', function(e) {
2300
e.stopPropagation();
2301
e.preventDefault();
2302
- if ($(this).data('pending') || e.type === 'click') {
+ if ($(this).data('pending')) {
2303
return false;
2304
}
2305
selectAllCheckbox.data('pending', true);
0 commit comments