blur-admin/src/app/pages/typography/typography.js

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 () {
}]);