- Update Bluebird.

- Adding Control Panes.
This commit is contained in:
Gunther Brunner
2014-03-17 14:28:18 +09:00
parent 698bb4064a
commit 7a2cdaf071
4 changed files with 9 additions and 2 deletions

View File

@@ -5,5 +5,11 @@ require('fa-borderlayout/build-0.3.1/stf-style.css')
module.exports = angular.module('control-panes', [
])
.config(['$routeProvider', function ($routeProvider) {
$routeProvider.when('/control-panes', {
template: require('./control-panes.jade'),
controller: 'ControlPanesCtrl'
})
}])
.factory('ControlPanesService', require('./control-panes-service'))
.controller('ControlPanesCtrl', require('./control-panes-controller'))