GUACAMOLE-38: Clean up unnecessary imports and tweak style issues.

This commit is contained in:
Nick Couchman
2017-08-11 20:45:39 -04:00
parent ee539597cd
commit 531725671b
5 changed files with 3 additions and 38 deletions

View File

@@ -147,7 +147,7 @@ angular.module('guacQuickConnect').controller('quickconnectController', ['$scope
// Set up the name of the connection based on various parts of the URI
var connName = urlArray[3] + '://';
if(!(typeof connParams['username'] === 'undefined'))
if (!(typeof connParams['username'] === 'undefined'))
connName += connParams['username'] + '@';
connName += connParams['hostname'] + ':' + connParams['port'];