Reformat lines to avoid line-breaks

This commit is contained in:
Samuel Mannehed 2016-10-24 13:35:06 +02:00
parent 9b3d363d07
commit daca5b1727
1 changed files with 4 additions and 4 deletions

View File

@ -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");