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. 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 ## Configuration recommandée

View File

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