mirror of
https://github.com/NuSkooler/enigma-bbs.git
synced 2025-07-25 20:18:25 +02:00
* Servers now define 'firstMenu'. This allows e.g. SSH to pre auth, while Telnet still gets the matrix
This commit is contained in:
parent
12e7722ec9
commit
4a22ce0924
4 changed files with 26 additions and 11 deletions
|
@ -88,7 +88,7 @@ function displayBanner(term) {
|
|||
'|00');
|
||||
}
|
||||
|
||||
function connectEntry(client) {
|
||||
function connectEntry(client, nextMenu) {
|
||||
var term = client.term;
|
||||
|
||||
/*
|
||||
|
@ -143,7 +143,7 @@ function connectEntry(client) {
|
|||
displayBanner(term);
|
||||
|
||||
setTimeout(function onTimeout() {
|
||||
client.gotoMenuModule( { name : Config.firstMenu } );
|
||||
client.gotoMenuModule( { name : nextMenu } );
|
||||
}, 500);
|
||||
});
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue