mirror of https://github.com/akveo/blur-admin
19 lines
367 B
JavaScript
19 lines
367 B
JavaScript
/**
|
|
* @author a.demeshko
|
|
* created on 1/12/16
|
|
*/
|
|
(function () {
|
|
'use strict';
|
|
|
|
angular.module('BlurAdmin.pages.timeline', [])
|
|
.config(routeConfig);
|
|
|
|
/** @ngInject */
|
|
function routeConfig($stateProvider) {
|
|
$stateProvider
|
|
.state('timeline', {
|
|
url: '/timeline',
|
|
templateUrl: 'app/pages/timeline/timeline.html'
|
|
});
|
|
}
|
|
})(); |