1
0
Fork 0
mirror of https://github.com/openstf/stf synced 2025-10-06 03:50:04 +02:00
OpenSTF/res/app/components/stf/standalone/index.js
Gunther Brunner 430103a913 Start adding back Standalone.
Moved ng-app to html so the title can be dynamic.
2014-09-18 23:48:52 +09:00

15 lines
533 B
JavaScript

require('./standalone.css')
module.exports = angular.module('device-control.standalone', [
require('stf/device').name,
require('stf/control').name,
require('stf/screen').name,
require('stf/settings').name
])
.run(["$templateCache", function ($templateCache) {
$templateCache.put('control-panes/device-control/standalone/standalone.jade',
require('./standalone.jade')
)
}])
.controller('StandaloneCtrl', require('./standalone-controller'))
.factory('StandaloneService', require('./standalone-service'))