UNPKG

kongadmin

Version:
36 lines (30 loc) 1.09 kB
(function() { 'use strict'; angular.module('frontend.cluster', []); // Module configuration angular.module('frontend.cluster') .config([ '$stateProvider', function config($stateProvider) { $stateProvider .state('cluster', { parent: 'frontend', url: '/cluster', data : { activeNode : true, pageName : "Cluster", // displayName : "node info", // pageDescription : "Generic details about the node" }, views: { 'content@': { templateUrl: 'js/app/cluster/views/index.html', controller: 'ClusterListController' } }, }) ; } ]) ; }());