1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-14 14:32:55 +08:00

add main page in wiki overlay

This commit is contained in:
Gagah Pangeran Rosfatiputra 2021-05-25 14:20:04 +07:00
parent 1109970278
commit ae0949fc14
No known key found for this signature in database
GPG Key ID: 25F6F17FD29031E2

View File

@ -54,6 +54,16 @@ namespace osu.Game.Overlays
private void onSuccess(APIWikiPage response)
{
wikiData.Value = response;
if (response.Layout == "main_page")
{
LoadDisplay(new WikiMainPage
{
Markdown = response.Markdown
});
}
else
{
LoadDisplay(new WikiMarkdownContainer
{
RelativeSizeAxes = Axes.X,
@ -62,6 +72,7 @@ namespace osu.Game.Overlays
Text = response.Markdown,
});
}
}
private void showParentPage()
{