From 810095d287da8351f7824ec35b5685f7188c2b1b Mon Sep 17 00:00:00 2001 From: Baris Soner Usakli Date: Sat, 25 Jan 2014 22:30:48 -0500 Subject: [PATCH] fixed infinite loading on categories --- public/src/forum/category.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/src/forum/category.js b/public/src/forum/category.js index 62c6e0f59f..bcc636a839 100644 --- a/public/src/forum/category.js +++ b/public/src/forum/category.js @@ -48,7 +48,7 @@ define(['composer', 'forum/pagination'], function(composer, pagination) { var bottom = ($(document).height() - $(window).height()) * 0.9; if ($(window).scrollTop() > bottom && !loadingMoreTopics) { - Category.loadMoreTopics(cid); + Category.loadMoreTopics(templates.get('category_id')); } }); } else {