mirror of https://github.com/akveo/blur-admin
13 lines
356 B
JavaScript
13 lines
356 B
JavaScript
'use strict';
|
|
|
|
angular.module('BlurAdmin.typographyPage', ['ngRoute'])
|
|
|
|
.config(['$routeProvider', function ($routeProvider) {
|
|
$routeProvider.when('/typography', {
|
|
templateUrl: 'app/pages/typography/typography.html',
|
|
controller: 'typographyPageCtrl'
|
|
});
|
|
}])
|
|
.controller('typographyPageCtrl', [function () {
|
|
|
|
}]); |