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