remove unused lines

This commit is contained in:
Athou
2013-03-22 23:57:35 +01:00
parent 8a6f843604
commit daeb54ff59

View File

@@ -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);
};