From f62cc620bcefa8e49f39f70ca16c14d8729fdba4 Mon Sep 17 00:00:00 2001 From: Alexis Date: Wed, 27 Jan 2021 11:48:50 +0100 Subject: [PATCH] =?UTF-8?q?ajout=20support=20c=C3=A9dille=20morte=20dactyl?= =?UTF-8?q?otest=20et=20b=C3=A9podactyl?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- bepodactyl/js/functions_page.js | 3 +++ dactylotest/js/fonctions_page_2.js | 3 +++ 2 files changed, 6 insertions(+) diff --git a/bepodactyl/js/functions_page.js b/bepodactyl/js/functions_page.js index 0d5ab2d..bcb1f99 100644 --- a/bepodactyl/js/functions_page.js +++ b/bepodactyl/js/functions_page.js @@ -100,6 +100,9 @@ function MacOsMod(t) var reg=new RegExp("[éÉ]", "g"); t = t.replace(reg,"´"); + + var reg=new RegExp("[çÇ]", "g"); + t = t.replace(reg,"¸"); return t; } diff --git a/dactylotest/js/fonctions_page_2.js b/dactylotest/js/fonctions_page_2.js index 39b1e71..07febc2 100755 --- a/dactylotest/js/fonctions_page_2.js +++ b/dactylotest/js/fonctions_page_2.js @@ -90,6 +90,9 @@ function MacOsMod(t) var reg=new RegExp("[éÉ]", "g"); t = t.replace(reg,"´"); + var reg=new RegExp("[çÇ]", "g"); + t = t.replace(reg,"¸"); + return t; }