mirror of
https://github.com/DeviceFarmer/stf.git
synced 2026-04-20 21:05:18 +02:00
13 lines
337 B
JavaScript
13 lines
337 B
JavaScript
define(['./module', 'oboe'], function(mod, oboe) {
|
|
mod.controller('DeviceListCtrl', ['$scope', function($scope) {
|
|
$scope.devices = []
|
|
|
|
oboe('/api/v1/devices')
|
|
.node('$devices[*]', function(devicesLoadedSoFar) {
|
|
$scope.$apply(function() {
|
|
$scope.devices = devicesLoadedSoFar
|
|
})
|
|
})
|
|
}])
|
|
})
|