Files
stf-DeviceFarmer/res/app/control-panes/device-control/index.js
Gunther Brunner 743f8becd6 - Finally, most of the unit tests now passes (resolving dependencies also).
- Shims now exports angular module name, however some of them clash with the original.
2014-08-21 22:04:19 +09:00

14 lines
433 B
JavaScript

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'))