make it 12 for aesthetics
This commit is contained in:
@@ -436,7 +436,7 @@ angular.module('Application').controller('AppStoreController', ['$scope', '$tran
|
||||
};
|
||||
|
||||
function filterForNewApps(apps) {
|
||||
var minApps = apps.length < 10 ? apps.length : 10; // prevent endless loop
|
||||
var minApps = apps.length < 12 ? apps.length : 12; // prevent endless loop
|
||||
var tmp = [];
|
||||
var i = 0;
|
||||
|
||||
@@ -449,7 +449,7 @@ angular.module('Application').controller('AppStoreController', ['$scope', '$tran
|
||||
}
|
||||
|
||||
function filterForRecentlyUpdatedApps(apps) {
|
||||
var minApps = apps.length < 10 ? apps.length : 10; // prevent endless loop
|
||||
var minApps = apps.length < 12 ? apps.length : 12; // prevent endless loop
|
||||
var tmp = [];
|
||||
var i = 0;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user