mirror of https://github.com/Nheko-Reborn/nheko
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
355 B
19 lines
355 B
7 years ago
|
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 );
|
||
|
}
|