10 lines
207 B
JavaScript
10 lines
207 B
JavaScript
'use strict';
|
|
|
|
angular.module('satbd.satellite.bar.views.authors',[
|
|
'ngRoute'
|
|
]).config(function($routeProvider) {
|
|
$routeProvider.when('/authors', {
|
|
templateUrl: 'js/views/authors/authors.html',
|
|
});
|
|
})
|