Files
stf-DeviceFarmer-1/res/app/layout/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

24 lines
660 B
JavaScript

require('se7en-bootstrap-3')
require('./cursor.css')
require('./stf-se7en.css')
require('./small.css')
require('./stf-styles.css')
module.exports = angular.module('layout', [
require('../settings/language').name,
require('stf/landscape').name,
require('stf/basic-mode').name,
require('ui-bootstrap').name,
require('angular-borderlayout').name,
require('stf/common-ui').name,
require('stf/socket/socket-state').name,
require('stf/browser-info').name
])
.config(['$tooltipProvider', function ($tooltipProvider) {
$tooltipProvider.options({
appendToBody: true
})
}])
.controller('LayoutCtrl', require('./layout-controller'))