From f9d88e122f0c171140283fcda57fed556d0ad959 Mon Sep 17 00:00:00 2001 From: danielgrippi Date: Sun, 2 Oct 2011 13:11:30 -0700 Subject: [PATCH] limit contacts to 15 on aspects pages for faster network times --- app/views/aspects/_selected_contacts.html.haml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/views/aspects/_selected_contacts.html.haml b/app/views/aspects/_selected_contacts.html.haml index 81d8069ae..26ab71d88 100644 --- a/app/views/aspects/_selected_contacts.html.haml +++ b/app/views/aspects/_selected_contacts.html.haml @@ -10,7 +10,7 @@ .content - if @stream.people.size > 0 - - for person in @stream.people.sample(20) + - for person in @stream.people.sample(15) = person_image_link(person) - if @stream.for_all_aspects? || @stream.aspect_ids.size > 1