Merge branch 'master' into staging
commit
5ac3e97dc8
|
@ -129,7 +129,9 @@ define(function () {
|
|||
out.saveTemplatePrompt = "Choisir un titre pour ce modèle";
|
||||
out.templateSaved = "Modèle enregistré !";
|
||||
out.selectTemplate = "Sélectionner un modèle ou appuyer sur Échap";
|
||||
out.useTemplate = "Vous posséder des modèles pour ce type de pad, souhaitez-vous en utiliser un?";
|
||||
out.useTemplate = "Commencer avec un modèle?";
|
||||
out.useTemplateOK = 'Choisir un modèle (Entrée)';
|
||||
out.useTemplateCancel = 'Document vierge (Échap)';
|
||||
|
||||
out.previewButtonTitle = "Afficher ou cacher la prévisualisation de Markdown";
|
||||
|
||||
|
|
|
@ -20,6 +20,10 @@ It also contains information on keeping your instance of CryptPad up to date.
|
|||
|
||||
See [Cryptpad-Docker](docs/cryptpad-docker.md)
|
||||
|
||||
## Setup using Ansible
|
||||
|
||||
See [Ansible Role for Cryptpad](https://github.com/systemli/ansible-role-cryptpad)
|
||||
|
||||
# Security
|
||||
|
||||
CryptPad is *private*, not *anonymous*. Privacy protects your data, anonymity protects you.
|
||||
|
|
|
@ -654,12 +654,8 @@ define([
|
|||
if (workgroup || (!Cryptpad.isLoggedIn() && !config.testMode)) { return; }
|
||||
|
||||
var filesList = getFiles([ROOT, 'hrefArray', TRASH]);
|
||||
var fData = files[FILES_DATA];
|
||||
getFiles([FILES_DATA]).forEach(function (id) {
|
||||
if (filesList.indexOf(id) === -1) {
|
||||
if (fData[id] && fData[id].href) {
|
||||
removePadAttribute(fData[id].href);
|
||||
}
|
||||
spliceFileData(id);
|
||||
}
|
||||
});
|
||||
|
|
Loading…
Reference in New Issue