paint selected tree item red when page is first loaded

This commit is contained in:
Athou
2013-04-11 10:24:35 +02:00
parent 60f289b82e
commit 193c73109f

View File

@@ -88,6 +88,9 @@ module.controller('SubscribeCtrl', function($scope, SubscriptionService) {
module.controller('CategoryTreeCtrl', function($scope, $timeout, $stateParams,
$window, $location, $state, $route, SubscriptionService) {
$scope.selectedType = $stateParams._type;
$scope.selectedId = $stateParams._id;
$scope.$on('$stateChangeSuccess', function() {
$scope.selectedType = $stateParams._type;
$scope.selectedId = $stateParams._id;