From 6517a4ed7f3fc4bce24212a3a2dfc98d255ffcea Mon Sep 17 00:00:00 2001 From: Joseph Schorr Date: Tue, 12 Aug 2014 17:09:51 -0400 Subject: [PATCH] Tweak the Angular view array threshold to make it slightly slower but better for the UI thread --- static/js/app.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/static/js/app.js b/static/js/app.js index f799b5228..1af812f5b 100644 --- a/static/js/app.js +++ b/static/js/app.js @@ -121,7 +121,7 @@ quayApp = angular.module('quay', quayDependencies, function($provide, cfpLoading * pauses in the UI for ngRepeat's when the array is significant in size. */ $provide.factory('AngularViewArray', ['$interval', function($interval) { - var ADDTIONAL_COUNT = 50; + var ADDTIONAL_COUNT = 20; function _ViewArray() { this.isVisible = false;