Supprime des echos

This commit is contained in:
Fred Tempez 2023-03-15 18:08:15 +01:00
parent ac13356737
commit 9f8f9fd786
1 changed files with 0 additions and 2 deletions

View File

@ -10,7 +10,6 @@
if (typeof (privateKey) == 'undefined') {
var privateKey = null;
};
console.log(getCookie('ZWII_UI'));
tinymce.init({
// Classe où appliquer l'éditeur
selector: ".editorWysiwyg",
@ -331,7 +330,6 @@ function getCookie(name) {
for (var i = 0; i < ca.length; i++) {
var c = ca[i];
while (c.charAt(0) == ' ') c = c.substring(1, c.length);
if (c.indexOf(nameEQ) == 0) console.log(c.substring(nameEQ.length, c.length));
if (c.indexOf(nameEQ) == 0) return c.substring(nameEQ.length, c.length);
}
return null;