Added command history into client

This commit is contained in:
Carlos
2019-08-23 14:56:10 +02:00
parent 36f950f2c3
commit 13d374ec32
5 changed files with 27 additions and 4 deletions

View File

@ -68,6 +68,7 @@ class WebConsoleManager {
*/
sendConsoleCmd(cmd){
this.activeConnection.sendToServer("EXEC " + cmd);
this.activeConnection.commands.push(cmd);
}
/**