mirror of https://github.com/akveo/blur-admin
26 lines
511 B
JavaScript
26 lines
511 B
JavaScript
/**
|
|
* @author v.lugovsky
|
|
* created on 16.12.2015
|
|
*/
|
|
(function () {
|
|
'use strict';
|
|
|
|
angular.module('BlurAdmin.pages.ui.modals', [])
|
|
.config(routeConfig);
|
|
|
|
/** @ngInject */
|
|
function routeConfig($stateProvider) {
|
|
$stateProvider
|
|
.state('ui.modals', {
|
|
url: '/modals',
|
|
templateUrl: 'app/pages/ui/modals/modals.html',
|
|
controller: 'ModalsPageCtrl',
|
|
title: 'Modals',
|
|
sidebarMeta: {
|
|
order: 300,
|
|
},
|
|
});
|
|
}
|
|
|
|
})();
|