fix autoclosing issue

This commit is contained in:
Jeremie Panzer
2013-03-26 12:10:19 +01:00
parent 17eb642cc7
commit 654cee9a1f
3 changed files with 24 additions and 22 deletions

View File

@@ -158,4 +158,9 @@ module.controller('FeedListCtrl', function($scope, $routeParams, $http,
});
}
};
$scope.toggle = function(entry) {
$scope.current = entry;
$scope.mark(entry, true);
}
});