Add more explanations

This commit is contained in:
Pieter Vander Vennet 2020-09-06 00:11:02 +02:00
parent 1ee921b089
commit 93bfa73088
3 changed files with 4 additions and 3 deletions

View file

@ -31,7 +31,8 @@ export default class HelpText extends UIElement {
if (setting === undefined) {
return "<h1>Welcome to the Custom Theme Builder</h1>" +
"Here, one can make their own custom mapcomplete themes.<br/>" +
"Fill out the fields to get a working mapcomplete theme. More information on the selected field will appear here when you click it";
"Fill out the fields to get a working mapcomplete theme. More information on the selected field will appear here when you click it.<br/>" +
"Want to see how the quests are doing in number of visits? All the stats are open on <a href='pietervdvn.goatcounter.com' target='_blank'>goatcounter</a>";
}
return new Combine(["<h1>", setting._name, "</h1>", setting._description.Render()]).Render();