Fix the Ctrl key + click to select multiple files
parent
1a7c4d5ebe
commit
834830fc4f
|
@ -2201,12 +2201,15 @@ define([
|
|||
.click(function () { $(this).select(); })
|
||||
.appendTo($d);
|
||||
}
|
||||
var roLink = ro ? base + el : getReadOnlyUrl(base + el);
|
||||
if (roLink) {
|
||||
$('<label>', {'for': 'propROLink'}).text(Messages.viewShare).appendTo($d);
|
||||
$('<input>', {'id': 'propROLink', 'readonly': 'readonly', 'value': roLink})
|
||||
.click(function () { $(this).select(); })
|
||||
.appendTo($d);
|
||||
var parsed = Cryptpad.parsePadUrl(el);
|
||||
if (parsed.hashData && parsed.hashData.type === 'pad') {
|
||||
var roLink = ro ? base + el : getReadOnlyUrl(base + el);
|
||||
if (roLink) {
|
||||
$('<label>', {'for': 'propROLink'}).text(Messages.viewShare).appendTo($d);
|
||||
$('<input>', {'id': 'propROLink', 'readonly': 'readonly', 'value': roLink})
|
||||
.click(function () { $(this).select(); })
|
||||
.appendTo($d);
|
||||
}
|
||||
}
|
||||
|
||||
if (APP.loggedIn && AppConfig.enablePinning) {
|
||||
|
@ -2440,12 +2443,12 @@ define([
|
|||
$appContainer.on('mouseup', function (e) {
|
||||
if (sel.down) { return; }
|
||||
if (e.which !== 1) { return ; }
|
||||
removeSelected(e);
|
||||
module.hideMenu(e);
|
||||
//removeSelected(e);
|
||||
});
|
||||
$appContainer.on('click', function (e) {
|
||||
if (e.which !== 1) { return ; }
|
||||
removeInput();
|
||||
module.hideMenu(e);
|
||||
hideNewButton();
|
||||
});
|
||||
$appContainer.on('drag drop', function (e) {
|
||||
|
|
Loading…
Reference in New Issue