mirror of
https://github.com/Nheko-Reborn/nheko.git
synced 2024-11-21 18:50:47 +03:00
18 lines
355 B
Text
18 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 );
|
|
}
|