From 31c18127587aeea3dff3778e577ef90ceedc1d75 Mon Sep 17 00:00:00 2001 From: Romain Neutron Date: Thu, 16 Feb 2012 18:03:13 +0100 Subject: [PATCH] Set max selection to 800 --- www/prod/jquery.Results.js | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/www/prod/jquery.Results.js b/www/prod/jquery.Results.js index b85a833b8c..b33d72900a 100644 --- a/www/prod/jquery.Results.js +++ b/www/prod/jquery.Results.js @@ -1,10 +1,11 @@ var p4 = p4 || {}; (function(p4, window){ - + p4.Results = { 'Selection':new Selectable($('#answers'), { - selector : '.IMGT', + selector : '.IMGT', + limit:800, selectStart:function(event, selection){ $('#answercontextwrap table:visible').hide(); }, @@ -16,6 +17,6 @@ var p4 = p4 || {}; } }) }; - + return; }(p4, window))