Fix middle click on the drive button

pull/1/head
yflory 7 years ago
parent d7f9ddd8d2
commit 69f4ce2abd

@ -593,17 +593,17 @@ define([
// We need to override the "a" tag action here because it is inside the iframe!
var $aTag = $('<a>', {
href: "/",
href: "/drive/",
title: Messages.header_logoTitle,
'class': "cryptpad-logo fa fa-hdd-o"
});
var onClick = function (e) {
e.preventDefault();
if (e.ctrlKey) {
window.open('/drive');
window.open('/drive/');
return;
}
window.location = "/drive";
window.location = "/drive/";
};
var onContext = function (e) { e.stopPropagation(); };

Loading…
Cancel
Save