Files
stf-DeviceFarmer/res/app/control-panes/advanced/remote-debug/remote-debug-controller.js
2014-06-24 11:58:59 +09:00

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
})
})
}