From abe3b885cf4b123ad6e36f6d4d9ae6695e0fa32e Mon Sep 17 00:00:00 2001 From: Tom Clegg Date: Fri, 10 Jul 2015 13:35:10 -0400 Subject: [PATCH] 6279: Hide "reconnect" button because it doesn't auto-login. --- apps/workbench/public/webshell/shell_in_a_box.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/apps/workbench/public/webshell/shell_in_a_box.js b/apps/workbench/public/webshell/shell_in_a_box.js index 51a5792a44..0c7e800ef8 100644 --- a/apps/workbench/public/webshell/shell_in_a_box.js +++ b/apps/workbench/public/webshell/shell_in_a_box.js @@ -134,7 +134,9 @@ ShellInABox.prototype.sessionClosed = function() { } this.vt100('Session closed.'); } - this.showReconnect(true); + // Revealing the "reconnect" button is commented out until we hook + // up the username+token auto-login mechanism to the new session: + //this.showReconnect(true); } catch (e) { } }; -- 2.30.2