mirror of
https://github.com/DeviceFarmer/stf.git
synced 2026-04-18 16:13:24 +02:00
12 lines
231 B
JavaScript
12 lines
231 B
JavaScript
module.exports = function RemoteDebugCtrl($scope) {
|
|
$scope.vnc = {}
|
|
|
|
$scope.generateVNCLogin = function() {
|
|
$scope.vnc = {
|
|
serverHost: 'localhost'
|
|
, serverPort: '7042'
|
|
, serverPassword: '12345678'
|
|
}
|
|
}
|
|
}
|