From daca5b17276749517bb2fd6c8fd349f70a9b8f8d Mon Sep 17 00:00:00 2001 From: Samuel Mannehed Date: Mon, 24 Oct 2016 13:35:06 +0200 Subject: [PATCH] Reformat lines to avoid line-breaks --- app/ui.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/app/ui.js b/app/ui.js index d872af52..f058f401 100644 --- a/app/ui.js +++ b/app/ui.js @@ -363,6 +363,7 @@ var UI; * ------v------*/ updateState: function(rfb, state, oldstate) { + var msg; switch (state) { case 'connecting': UI.showStatus("Connecting"); @@ -370,12 +371,11 @@ var UI; case 'connected': UI.connected = true; if (rfb && rfb.get_encrypt()) { - UI.showStatus("Connected (encrypted) to " + - UI.desktopName); + msg = "Connected (encrypted) to " + UI.desktopName; } else { - UI.showStatus("Connected (unencrypted) to " + - UI.desktopName); + msg = "Connected (unencrypted) to " + UI.desktopName; } + UI.showStatus(msg); break; case 'disconnecting': UI.showStatus("Disconnecting");