Files
stf-DeviceFarmer/res/app/settings/general/local/index.js
Gunther Brunner 1eb6af0119 Replaced old jade with new pug.
Using temporarily npm-shrinkwrap since `template-html-loader` uses an old `consolidate.js` version which doesn't support `pug`.
Follow here: https://github.com/jtangelder/template-html-loader/issues/8
2016-08-05 18:24:30 +09:00

15 lines
436 B
JavaScript

require('angular-bootstrap')
module.exports = angular.module('ui-local-settings', [
require('stf/settings').name,
require('stf/common-ui/modals/common').name,
'ui.bootstrap'
])
.run(['$templateCache', function($templateCache) {
$templateCache.put(
'settings/general/local/local-settings.pug'
, require('./local-settings.pug')
)
}])
.controller('LocalSettingsCtrl', require('./local-settings-controller'))