diff --git a/src/main/webapp/js/controllers.js b/src/main/webapp/js/controllers.js index 041563b8..0c40d306 100644 --- a/src/main/webapp/js/controllers.js +++ b/src/main/webapp/js/controllers.js @@ -50,14 +50,10 @@ module.controller('CategoryTreeCtrl', function($scope, $routeParams, $location, } $scope.feedClicked = function(id) { - $scope.selectedType = 'feed'; - $scope.selectedId = id; $location.path('/feeds/view/feed/' + id); }; $scope.categoryClicked = function(id) { - $scope.selectedType = 'category'; - $scope.selectedId = id; $location.path('/feeds/view/category/' + id); };