From 536bd3318135ba4844a2a6b039652ebb6cbcf901 Mon Sep 17 00:00:00 2001 From: fredtempez Date: Thu, 27 Sep 2018 06:53:33 +0200 Subject: [PATCH] =?UTF-8?q?Modif=20:=20am=C3=A9lioration=20de=20l'aper?= =?UTF-8?q?=C3=A7u=20footer?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 4 +++- core/module/theme/view/footer/footer.js.php | 21 +++++++++------------ 2 files changed, 12 insertions(+), 13 deletions(-) diff --git a/README.md b/README.md index 6cbf5285..cbf95a94 100755 --- a/README.md +++ b/README.md @@ -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 diff --git a/core/module/theme/view/footer/footer.js.php b/core/module/theme/view/footer/footer.js.php index 5b6804a7..a2154a1a 100755 --- a/core/module/theme/view/footer/footer.js.php +++ b/core/module/theme/view/footer/footer.js.php @@ -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();