Fix UI issues with rename and delete actions
parent
319ce5d8c8
commit
fdb5c2ddb5
|
@ -182,7 +182,7 @@ define(function () {
|
|||
out.fm_originalPath = "Chemin d'origine";
|
||||
out.fm_emptyTrashDialog = "Êtes-vous sûr de vouloir vider la corbeille ?";
|
||||
out.fm_removeSeveralPermanentlyDialog = "Êtes-vous sûr de vouloir supprimer ces {0} éléments de manière permanente ?";
|
||||
out.fm_removePermanentlyDialog = "Êtes-vous sûr de vouloir supprimer {0} de la corbeille de manière permanente ?";
|
||||
out.fm_removePermanentlyDialog = "Êtes-vous sûr de vouloir supprimer {0} de manière permanente ?";
|
||||
out.fm_restoreDialog = "Êtes-vous sûr de vouloir restaurer {0} à son emplacement précédent ?";
|
||||
out.fm_removeSeveralDialog = "Êtes-vous sûr de vouloir déplacer ces {0} éléments vers la corbeille ?";
|
||||
out.fm_removeDialog = "Êtes-vous sûr de vouloir déplacer {0} vers la corbeille ?";
|
||||
|
|
|
@ -185,7 +185,7 @@ define(function () {
|
|||
out.fm_originalPath = "Original path";
|
||||
out.fm_emptyTrashDialog = "Are you sure you want to empty the trash?";
|
||||
out.fm_removeSeveralPermanentlyDialog = "Are you sure you want to remove these {0} elements from the trash permanently?";
|
||||
out.fm_removePermanentlyDialog = "Are you sure you want to remove {0} from the trash permanently?";
|
||||
out.fm_removePermanentlyDialog = "Are you sure you want to remove {0} permanently?";
|
||||
out.fm_removeSeveralDialog = "Are you sure you want to move these {0} elements to the trash?";
|
||||
out.fm_removeDialog = "Are you sure you want to move {0} to the trash?";
|
||||
out.fm_restoreDialog = "Are you sure you want to restore {0} to its previous location?";
|
||||
|
|
|
@ -214,6 +214,10 @@ li {
|
|||
vertical-align: top;
|
||||
}
|
||||
|
||||
#content .grid li .name {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
#content .grid li input {
|
||||
width: 100%;
|
||||
}
|
||||
|
|
|
@ -254,7 +254,8 @@ define([
|
|||
removeInput();
|
||||
}
|
||||
});
|
||||
$element.parent().append($input);
|
||||
//$element.parent().append($input);
|
||||
$element.after($input);
|
||||
$input.focus();
|
||||
$input.select();
|
||||
// We don't want to open the file/folder when clicking on the input
|
||||
|
@ -1304,7 +1305,8 @@ define([
|
|||
var msg = Messages._getKey("fm_removeSeveralPermanentlyDialog", [paths.length]);
|
||||
if (paths.length === 1) {
|
||||
var path = paths[0];
|
||||
var name = filesOp.isInTrashRoot(path) ? path[1] : path[path.length - 1];
|
||||
var element = filesOp.findElement(files, path);
|
||||
var name = filesOp.isInTrashRoot(path) ? path[1] : (filesOp.isPathInUnsorted(path) ? filesOp.getTitle(element) : path[path.length - 1]);
|
||||
msg = Messages._getKey("fm_removePermanentlyDialog", [name]);
|
||||
}
|
||||
Cryptpad.confirm(msg, function(res) {
|
||||
|
|
Loading…
Reference in New Issue