mirror of
https://github.com/Nheko-Reborn/nheko.git
synced 2024-11-22 19:08:58 +03:00
19 lines
355 B
Text
19 lines
355 B
Text
|
function Controller()
|
||
|
{
|
||
|
}
|
||
|
|
||
|
Controller.prototype.IntroductionPageCallback = function()
|
||
|
{
|
||
|
gui.clickButton( buttons.NextButton );
|
||
|
}
|
||
|
|
||
|
Controller.prototype.ReadyForInstallationPageCallback = function()
|
||
|
{
|
||
|
gui.clickButton( buttons.CommitButton );
|
||
|
}
|
||
|
|
||
|
Controller.prototype.FinishedPageCallback = function()
|
||
|
{
|
||
|
gui.clickButton( buttons.FinishButton );
|
||
|
}
|