Fix duplicated contribution display on show more action
Benjamin Renard

Benjamin Renard commited on 2014-12-28 01:02:28
Showing 2 changed files, with 2 additions and 2 deletions.

... ...
@@ -1,5 +1,5 @@
1 1
 CACHE MANIFEST
2
-# Date : 2014/12/01 - Version : 1
2
+# Date : 2014/12/28 - Version : 1
3 3
 
4 4
 CACHE:
5 5
 index.html
... ...
@@ -200,7 +200,7 @@ show_more_contributions=function(count) {
200 200
   else {
201 201
     var previous=0;
202 202
     if (tbody.children('tr').length>0) {
203
-      previous=tbody.children('tr').length-1;
203
+      previous=tbody.children('tr').length;
204 204
     }
205 205
     if (!count) count=20;
206 206
     for (var i=0; i<count; i++) {
207 207