Skip to content
Extraits de code Groupes Projets

Master

Ouvert Clement LEBOEUF - Elwingh a demandé de fusionner elwingh/ensiee-auto:master vers master
3 fichiers
+ 5
5
Comparer les modifications
  • Côte à côte
  • En ligne
Fichiers
3
+ 3
3
@@ -5,10 +5,10 @@ const walk = document.createTreeWalker(
null,
false
);
const rExp = new RegExp("ENSIEE", "gi");
const rExp = new RegExp("ENSIIE", "gi");
while ((textNode = walk.nextNode())) {
textNode.nodeValue = textNode.nodeValue.replace(rExp, "ENSIIE");
textNode.nodeValue = textNode.nodeValue.replace(rExp, "ENSIEE");
}
document.title = document.title.replace(rExp, "ENSIIE");
document.title = document.title.replace(rExp, "ENSIEE");
Chargement en cours