|
@@ -191,6 +191,7 @@ $(document).ready(function(){
|
|
weekdaysAbbrev: ['D','L','M','M','J','V','S']
|
|
weekdaysAbbrev: ['D','L','M','M','J','V','S']
|
|
}
|
|
}
|
|
});
|
|
});
|
|
|
|
+
|
|
// Affichage des erreur struts
|
|
// Affichage des erreur struts
|
|
$('.field-error').each(function() {
|
|
$('.field-error').each(function() {
|
|
const error = $(this).children('ul li').children('span').html();
|
|
const error = $(this).children('ul li').children('span').html();
|
|
@@ -198,6 +199,23 @@ $(document).ready(function(){
|
|
parent.children('.helper-text').attr('data-error', error);
|
|
parent.children('.helper-text').attr('data-error', error);
|
|
parent.children('.validate').addClass('invalid');
|
|
parent.children('.validate').addClass('invalid');
|
|
});
|
|
});
|
|
-
|
|
|
|
-
|
|
|
|
|
|
+
|
|
|
|
+ // Cookie consent
|
|
|
|
+ window.cookieconsent.initialise({
|
|
|
|
+ palette: {
|
|
|
|
+ popup: {
|
|
|
|
+ background: "#aa0000",
|
|
|
|
+ text: "#ffdddd"
|
|
|
|
+ },
|
|
|
|
+ button: {
|
|
|
|
+ background: "#ff0000"
|
|
|
|
+ }
|
|
|
|
+ },
|
|
|
|
+ position: "bottom-right",
|
|
|
|
+ content: {
|
|
|
|
+ message: "Ce site web utilise des cookies pour améliorer votre expérience de navigation. En continuant sur ce site vous acceptez leurs utilisations.",
|
|
|
|
+ dismiss: "Accepter",
|
|
|
|
+ link: "En savoir plus"
|
|
|
|
+ }
|
|
|
|
+ });
|
|
});
|
|
});
|