/* 2nd level route entry point this controller is responsible for Routing Organization LCA , Product LCA with or without PCR selected and the stutus of a LCA --------------------------------- */ angular.module('CarbonFootprint') .config(function ($locationProvider, $routeProvider, CONSTANTS) { $routeProvider.when('/LCA/RiskAssmt/:LCAID', { templateUrl: CONSTANTS.PB + 'LCA-RiskAssmt', controller: 'RiskAssmtController' }) }) .controller('RiskAssmtController', ['$scope', '$location', function ($scope, $location) { console.log("LayoutController") }]);