From daeb54ff59bc69b912c4c916fadab7642e5a1e84 Mon Sep 17 00:00:00 2001 From: Athou Date: Fri, 22 Mar 2013 23:57:35 +0100 Subject: [PATCH] remove unused lines --- src/main/webapp/js/controllers.js | 4 ---- 1 file changed, 4 deletions(-) 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); };