mirror of
https://github.com/DeviceFarmer/stf.git
synced 2026-04-27 19:25:13 +02:00
All services and controllers are implemented.
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
require('./device-control.css')
|
||||
|
||||
module.exports = angular.module('device-control', [
|
||||
require('stf/device').name,
|
||||
require('stf/control').name
|
||||
])
|
||||
.config(['$routeProvider', function ($routeProvider) {
|
||||
$routeProvider.when('/devices/:serial', {
|
||||
template: require('./device-control.jade'),
|
||||
controller: 'DeviceControlCtrl'
|
||||
})
|
||||
}])
|
||||
.controller('DeviceControlCtrl', require('./device-control-controller'))
|
||||
|
||||
Reference in New Issue
Block a user