optional query parameter to filter out old entries from results

This commit is contained in:
Athou
2013-06-08 14:09:46 +02:00
parent 84db458fd1
commit feda8ca834
8 changed files with 94 additions and 23 deletions

View File

@@ -707,7 +707,7 @@ function($scope, $stateParams, $http, $route, $window, EntryService, SettingsSer
$scope.errorCount = data.errorCount;
$scope.timestamp = data.timestamp;
$scope.busy = false;
$scope.hasMore = data.entries.length == limit;
$scope.hasMore = data.hasMore;
};
if (!$scope.keywords) {
var service = $scope.selectedType == 'feed' ? FeedService