Separate port from hostname for VNC since most clients have them as separate fields (Improve Copy-Paste workflow).

This commit is contained in:
Gunther Brunner
2015-10-13 20:20:32 +09:00
parent 41be8d09a2
commit a7408e071f
3 changed files with 7 additions and 9 deletions

View File

@@ -3,7 +3,8 @@ module.exports = function RemoteDebugCtrl($scope) {
$scope.generateVNCLogin = function () {
$scope.vnc = {
serverHost: 'localhost:7042'
serverHost: 'localhost'
, serverPort: '7042'
, serverPassword: '12345678'
}
}