From e481326ffd15c7dd7f9878cc9f4f94b41021ac1a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ale=C5=A1=20Smodi=C5=A1?= Date: Tue, 15 Sep 2015 20:19:59 +0200 Subject: Bugfix: leftmostCol was not correctly referenced. --- js/codeq/console.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'js/codeq/console.js') diff --git a/js/codeq/console.js b/js/codeq/console.js index 41aae40..90b66cd 100644 --- a/js/codeq/console.js +++ b/js/codeq/console.js @@ -573,7 +573,7 @@ .then((function (newLine, lineIndex) {return function () { var cookedChars = lineIndex < lastLineIndex ? newLine + '\n' : newLine, // default thisRow = currentRow, - leftmost = typeof this.leftmostCol === 'number' && this.leftmostCol || 0, + leftmost = typeof handler.leftmostCol === 'number' && handler.leftmostCol || 0, dh; // first cook the input -- cgit v1.2.1