Fixes reconnect ui not going away

pull/3/head
Ruben Daniels 2015-02-11 17:00:19 +00:00
rodzic 2587c41e80
commit 591e5d841e
2 zmienionych plików z 6 dodań i 1 usunięć

Wyświetl plik

@ -357,7 +357,7 @@ define(function(require, exports, module) {
}, },
/** /**
* Spawns a child process in a TMUX and returns a stream object. * Spawns a child process in a TMUX session and returns a stream object.
* Use this method if the process you wish to start requires a * Use this method if the process you wish to start requires a
* terminal (for instance VI). * terminal (for instance VI).
* *

Wyświetl plik

@ -50,6 +50,11 @@ define(function(require, exports, module) {
showDisconnect(e); showDisconnect(e);
}); });
}); });
vfs.on("away", function(){
});
vfs.on("back", function(){
hideDisconnect();
});
vfs.on("connect", function(){ vfs.on("connect", function(){
hideDisconnect(); hideDisconnect();
}); });