mirror of
https://github.com/DeviceFarmer/stf.git
synced 2026-04-19 00:23:25 +02:00
10 lines
241 B
JavaScript
10 lines
241 B
JavaScript
module.exports = function RemoteDebugCtrl($scope) {
|
|
|
|
$scope.control.startRemoteConnect().then(function (result) {
|
|
var url = result.lastData
|
|
$scope.$apply(function () {
|
|
$scope.debugCommand = 'adb connect ' + url
|
|
})
|
|
})
|
|
}
|