Browse Source

Lower the limit of folders list size (to 100, 25 for IE) when the names abbreviation is in action

release-0.7
Aleksander Machniak 13 years ago
parent
commit
9bfaf5f070
  1. 2
      skins/default/functions.js

2
skins/default/functions.js

@ -590,7 +590,7 @@ function rcube_render_mailboxlist()
var list = $('#mailboxlist > li a, #mailboxlist ul:visible > li a');
// it's too slow with really big number of folders, especially on IE
if (list.length > 500 * (bw.ie ? 0.2 : 1))
if (list.length > (bw.ie ? 25 : 100))
return;
list.each(function(){

Loading…
Cancel
Save