We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2356a78 commit 672ed0fCopy full SHA for 672ed0f
public/banner.js
@@ -99,7 +99,8 @@
99
100
// ── Link ────────────────────────────────────────────────────────────
101
var linkParam = params.link;
102
- var linkUrl = linkParam === "none" ? null : (linkParam || "https://keepandroidopen.org");
+ var defaultLink = "https://keepandroidopen.org" + (locale === "en" ? "" : "/" + locale + "/");
103
+ var linkUrl = linkParam === "none" ? null : (linkParam || defaultLink);
104
105
// ── Close button ────────────────────────────────────────────────────
106
var showClose = params.hidebutton !== "off";
0 commit comments