From daeb1f9eeb613576290d1b4450f3ad2f9bcf1e19 Mon Sep 17 00:00:00 2001 From: neocarto Date: Thu, 12 Oct 2023 17:28:19 +0200 Subject: [PATCH] fix url footer --- src/layers/footer.js | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/layers/footer.js b/src/layers/footer.js index 444a170..d59a6f0 100644 --- a/src/layers/footer.js +++ b/src/layers/footer.js @@ -56,10 +56,10 @@ export function addfooter(selection, width, height, options = {}) { .attr("dominant-baseline", "hanging") .attr("fill", fill) .attr("font-family", "sans-serif") - .attr("fill-opacity", 1) - .text((d) => d) - .on("click", function () { - window.open("http://www.lemonde.fr"); - }) - .style("cursor", "pointer"); + .attr("fill-opacity", 1); + // .text((d) => d) + // .on("click", function () { + // window.open("http://www.lemonde.fr"); + // }) + // .style("cursor", "pointer"); }