--- a/src/web/app/themes/twentynineteen-child/footer.php Wed Sep 04 17:01:28 2019 +0200
+++ b/src/web/app/themes/twentynineteen-child/footer.php Wed Sep 11 12:30:41 2019 +0200
@@ -41,10 +41,39 @@
<a target="_blank" href="https://www.fondation-afnic.fr"><img src="<?php echo get_stylesheet_directory_uri(); ?>/images/logo_afnic.jpg" alt="logo fondation afnic"/></a>
</div><!-- partners -->
</div><!-- .site-info -->
+
</footer><!-- #colophon -->
</div><!-- #page -->
+ <script>
+
+ // Tooltips
+ var $j = jQuery.noConflict();
+
+ $j(function () {
+ $j(document).tooltip({
+ content: function () {
+ return $j(this).prop('title');
+ },
+ show: null,
+ close: function (event, ui) {
+ ui.tooltip.hover(
+
+ function () {
+ $j(this).stop(true).fadeTo(400, 1);
+ },
+
+ function () {
+ $j(this).fadeOut("400", function () {
+ $j(this).remove();
+ })
+ });
+ }
+ });
+ });
+ </script>
+
<?php wp_footer(); ?>
</body>