mirror of
https://github.com/DeviceFarmer/stf.git
synced 2026-04-20 15:55:16 +02:00
- Adding Layout Controller. - Start adding STF 1 layout - Refactored graphics to a common repository. - Added all bower/npm dependencies needed for now.
22 lines
701 B
JavaScript
22 lines
701 B
JavaScript
require('style!raw!se7en-bootstrap-3/build/stylesheets/bootstrap.min.css')
|
|
require('style!raw!se7en-bootstrap-3/build/stylesheets/se7en-font.css')
|
|
require('style!raw!se7en-bootstrap-3/build/stylesheets/style.css')
|
|
require('style!raw!se7en-bootstrap-3/build/stylesheets/font-awesome.min.css')
|
|
|
|
|
|
// Temporary here:
|
|
require('fa-borderlayout')
|
|
require('fa-borderlayout/build-0.3.1/borderLayout.css')
|
|
require('fa-borderlayout/build-0.3.1/stf-style.css')
|
|
|
|
|
|
require('./cursor.css')
|
|
require('./stf-se7en.css')
|
|
require('style!raw!./stf-styles.css')
|
|
require('./small.css')
|
|
|
|
module.exports = angular.module('layout', [
|
|
'fa.directive.borderLayout'
|
|
])
|
|
.controller('LayoutCtrl', require('./layout-controller'))
|