Files
stf-DeviceFarmer/res/app/control-panes/dashboard/shell/shell-controller.js
Gunther Brunner 2100924df4 - No root for now.
2014-03-27 21:37:17 +09:00

17 lines
381 B
JavaScript

module.exports = function ShellCtrl($scope) {
$scope.results = []
$scope.run = function(command) {
var cmd = $scope.control.shell(command)
return cmd.promise
.progressed(function(results) {
$scope.results = results
$scope.$digest()
})
.then(function(results) {
$scope.results = results
$scope.$digest()
})
}
}