add info menu

This commit is contained in:
MathMan05 2025-03-31 14:26:26 -05:00
parent 74c99e2f34
commit 54416197de
2 changed files with 13 additions and 1 deletions

View file

@ -1919,6 +1919,17 @@ class Localuser {
});
}
}
{
const jankInfo = settings.addButton(I18n.jankInfo());
const img = document.createElement("img");
img.src = "/logo.svg";
jankInfo.addHTMLArea(img);
img.width = 128;
img.height = 128;
jankInfo.addMDText(
I18n.clientDesc("Jank-Rolling", window.location.origin, this.rights.allow + ""),
);
}
settings.show();
}
readonly botTokens: Map<string, string> = new Map();