1
0
Fork 0
mirror of https://github.com/openstf/stf synced 2025-10-04 10:19:30 +02:00
OpenSTF/res/app/control-panes/advanced/vnc/vnc-controller.js
2015-10-13 17:29:04 +09:00

10 lines
212 B
JavaScript

module.exports = function RemoteDebugCtrl($scope) {
$scope.vnc = {}
$scope.generateVNCLogin = function () {
$scope.vnc = {
serverHost: 'localhost:7042'
, serverPassword: '12345678'
}
}
}