mirror of
https://github.com/DeviceFarmer/stf.git
synced 2026-04-23 17:25:23 +02:00
11 lines
212 B
JavaScript
11 lines
212 B
JavaScript
module.exports = function RemoteDebugCtrl($scope) {
|
|
$scope.vnc = {}
|
|
|
|
$scope.generateVNCLogin = function () {
|
|
$scope.vnc = {
|
|
serverHost: 'localhost:7042'
|
|
, serverPassword: '12345678'
|
|
}
|
|
}
|
|
}
|