{"version":3,"names":[],"mappings":"","sources":["category/category-routes.js"],"sourcesContent":["(function () {\r\n 'use strict';\r\n\r\n angular\r\n .module('category')\r\n .config(config);\r\n\r\n function config($stateProvider) {\r\n $stateProvider\r\n .state('category', {\r\n url: '/category/:categoryId',\r\n reloadOnSearch: false,\r\n views: {\r\n 'mainView': {\r\n templateUrl: 'category/category.tpl.html',\r\n controller: 'CategoryCtrl',\r\n controllerAs: 'category'\r\n },\r\n 'layoutView': {\r\n templateUrl: 'partials/layout.html',\r\n }\r\n }\r\n\r\n });\r\n }\r\n}());\r\n"],"file":"category-routes.js"}