Files
satbd-explorer/webapp/js/satbd.satellite.bar.js
Alexandre Tuleu 5f8900acbb Makes album a component.
Should not be a directive, but a simple component
2016-02-15 16:13:19 +01:00

14 lines
378 B
JavaScript

'use strict';
angular.module('satbd.satellite.bar',[
'ngRoute',
'satbd.satellite.bar.controllers',
'satbd.satellite.bar.services',
'satbd.satellite.bar.views.recents',
'satbd.satellite.bar.views.series',
'satbd.satellite.bar.views.authors',
'satbd.satellite.bar.views.search'
]).config(function($routeProvider) {
$routeProvider.otherwise({redirectTo: '/recents'});
});