Files
stf/res/app/scripts/controllers/DeviceControlCtrl.js

18 lines
379 B
JavaScript

define(['./module'], function(mod) {
function DeviceControlCtrl($scope, $routeParams, deviceService) {
$scope.device = null
deviceService.get($routeParams.serial)
.then(function(device) {
$scope.device = device
})
}
mod.controller('DeviceControlCtrl'
, [ '$scope'
, '$routeParams'
, 'deviceService'
, DeviceControlCtrl
])
})