MatthewLavine / NodeJS-Chat

NodeJS based chat App
https://hardorange-chat.herokuapp.com/
MIT License
33 stars 11 forks source link

Hello! #26

Closed ghost closed 10 years ago

ghost commented 10 years ago

Queria sabes si pueden agregar una lista de las salas que estan online para que la gente pueda entrar a otras salas! si necesidad de /join en el menu puede mostrar la lista de salas

MatthewLavine commented 10 years ago

There is currently the "/channels" command that shows all current active rooms.

ghost commented 10 years ago

ok, pero se podra la opcion de que en menu, se muestren las salas sin necesidad de colocar el /channels asi como se muestra currentChannel Que tambien las salas activas

MatthewLavine commented 10 years ago

I apologize, but could you please post these issues in English. I don't speak Spanish and Google Translate is not able to translate what you are asking correctly.

ghost commented 10 years ago

place a list of active rooms like in the user menu but rooms

MatthewLavine commented 10 years ago

I understand. This is actually a planned feature, there is an open issue for it (https://github.com/MatthewLavine/NodeJS-Chat/issues/15).

ghost commented 10 years ago

as I can use the / register command to a button

ghost commented 10 years ago

como puedo utilizar el comando / registrar a un botón

/! GUARDAR NICK BOTON / function checkInput() { var a = document.getElementById("chatBox").value; "/nick" == a.substr(0, 5) && (document.getElementById("chatBox").value = a.substr(0, 40)) }

function saveNick() { document.getElementById("chatBox").value = "/nick " + document.getElementById("newNick").value, sendMessage(), $("#changeNick").foundation("reveal", "close") } /! ------------------------- /

ghost commented 10 years ago

/! SAVE PASSWORD NICK / function checkInput() { var a = document.getElementById("chatBox").value; "/register" == a.substr(0, 5) && (document.getElementById("chatBox").value = a.substr(0, 40)) }

function saveNick() { document.getElementById("chatBox").value = "/register " + document.getElementById("newRegister").value, sendMessage(), $("#changeNick").foundation("reveal", "close") } /! ------------------------- /