Add Wiki link under community
parent
7400ba0503
commit
517b012736
|
@ -22,6 +22,7 @@ export enum MenuOptions {
|
||||||
LOG_OUT
|
LOG_OUT
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const wikiUrl = 'https://wiki.pokerogue.net';
|
||||||
const discordUrl = 'https://discord.gg/uWpTfdKG49';
|
const discordUrl = 'https://discord.gg/uWpTfdKG49';
|
||||||
const githubUrl = 'https://github.com/Flashfyre/pokerogue';
|
const githubUrl = 'https://github.com/Flashfyre/pokerogue';
|
||||||
|
|
||||||
|
@ -160,6 +161,11 @@ export default class MenuUiHandler extends MessageUiHandler {
|
||||||
};
|
};
|
||||||
|
|
||||||
const communityOptions = [
|
const communityOptions = [
|
||||||
|
{
|
||||||
|
label: 'Wiki',
|
||||||
|
handler: () => window.open(wikiUrl, '_blank').focus(),
|
||||||
|
keepOpen: true
|
||||||
|
},
|
||||||
{
|
{
|
||||||
label: 'Discord',
|
label: 'Discord',
|
||||||
handler: () => window.open(discordUrl, '_blank').focus(),
|
handler: () => window.open(discordUrl, '_blank').focus(),
|
||||||
|
|
Loading…
Reference in New Issue