mirror of
https://github.com/openstf/stf
synced 2025-10-04 10:19:30 +02:00
10 lines
212 B
JavaScript
10 lines
212 B
JavaScript
module.exports = function RemoteDebugCtrl($scope) {
|
|
$scope.vnc = {}
|
|
|
|
$scope.generateVNCLogin = function () {
|
|
$scope.vnc = {
|
|
serverHost: 'localhost:7042'
|
|
, serverPassword: '12345678'
|
|
}
|
|
}
|
|
}
|