From c54905d435f7401b417ec8f49c782822f4132655 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Gr=C3=BCning?= Date: Fri, 10 Jul 2015 14:43:03 +0200 Subject: [PATCH] Fix variable name Fix for this JS error: `Uncaught ReferenceError: _i is not defined` --- src/filter.coffee | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/filter.coffee b/src/filter.coffee index 9799468..c17fbc4 100644 --- a/src/filter.coffee +++ b/src/filter.coffee @@ -362,7 +362,7 @@ class filter toprocess = [] content = "" - content += "" + groupable_array[_i] + "
" + content += "" + groupable_array[i] + "
" if groupable_array_content.length > 0 for j in [pointer_left..groupable_array_content.length-1] @@ -379,7 +379,7 @@ class filter if toprocess.length > 0 for k in [0..toprocess.length-1] - content += "" + toprocess[_k] + "
" + content += "" + toprocess[k] + "
" check_count++ $('#groupable_att').append("
" + content + "
")