Modif : amélioration de l'aperçu footer

This commit is contained in:
fredtempez 2018-09-27 06:53:33 +02:00
parent 735eb555a5
commit 536bd33181
2 changed files with 12 additions and 13 deletions

View File

@ -2,7 +2,9 @@
Zwii est un CMS sans base de données (Flat-File) qui permet à ses utilisateurs de créer et gérer facilement un site web sans aucune connaissance en programmation.
[Site](http://zwiicms.com/) - [Forum](http://forum.zwiicms.com/) - [GitHub](https://github.com/remijean/ZwiiCMS/)
[Site](http://zwiicms.com/) - [Forum](http://forum.zwiicms.com/) - [GitHub version initiale](https://github.com/remijean/ZwiiCMS/) - [GitHub](https://github.com/fredtempez/ZwiiCMS)
Zwii a été créé par un développeur de talent, [Rémi Jean](https://remijean.fr/), il est désormais maintenu par la communauté et hébergé sur ce git.
## Configuration recommandée

View File

@ -55,31 +55,28 @@ $("input, select").on("change", function() {
}
});
// Position dans les blocs FT
// Bloc texte personnalisé
$("#themeFooterTextPosition").on("change",function() {
$("#themeFooterForm").on("change",function() {
switch($("#themeFooterTextPosition").val()) {
case 'hide':
$("#footerText").hide();
break;
case 'left':
$("#footerText").show().prependTo("#bodyLeft");
$("#footerText").show().prependTo("#siteLeft");
$("#footerText").show().appendTo("#bodyLeft");
$("#footerText").show().appendTo("#siteLeft");
break;
case 'center':
$("#footerText").show().prependTo("#bodyCenter");
$("#footerText").show().prependTo("#siteCenter");
$("#footerText").show().appendTo("#bodyCenter");
$("#footerText").show().appendTo("#siteCenter");
break;
case 'right':
$("#footerText").show().prependTo("#bodyRight");
$("#footerText").show().prependTo("#siteRight");
$("#footerText").show().appendTo("#bodyRight");
$("#footerText").show().appendTo("#siteRight");
break;
}
}).trigger("change");
// Bloc socials
$("#themeFooterSocialsPosition").on("change",function() {
switch($("#themeFooterSocialsPosition").val()) {
case 'hide':
$("#footerSocials").hide();