mirror of
https://github.com/DeviceFarmer/stf.git
synced 2026-04-19 16:43:26 +02:00
8 lines
172 B
JavaScript
8 lines
172 B
JavaScript
module.exports = function RemoteDebugCtrl($scope) {
|
|
|
|
$scope.remoteDebugCommand = function () {
|
|
var server = '127.0.0.1:5555'
|
|
return 'adb connect ' + server
|
|
}
|
|
}
|