- Controlling devices from control-panes.

This commit is contained in:
Gunther Brunner
2014-03-31 16:13:12 +09:00
parent e173a4f648
commit f8a4fee2bb
12 changed files with 116 additions and 72 deletions

View File

@@ -0,0 +1,13 @@
require('./device-control.css')
module.exports = angular.module('device-control', [
require('stf/device').name,
require('stf/control').name,
require('stf/screen').name
])
.run(["$templateCache", function ($templateCache) {
$templateCache.put('control-panes/device-control/device-control.jade',
require('./device-control.jade')
)
}])
// .controller('DeviceControlCtrl', require('./device-control-controller'))