From 4e2218b005e33b8af6df9fa3ae5248f4f5e618c4 Mon Sep 17 00:00:00 2001 From: Kevin Sawicki Date: Wed, 12 Feb 2014 08:59:06 -0800 Subject: [PATCH] Use @ instead of EditorView prefix --- src/editor-view.coffee | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/editor-view.coffee b/src/editor-view.coffee index 5331cd230..b64f41379 100644 --- a/src/editor-view.coffee +++ b/src/editor-view.coffee @@ -1420,7 +1420,7 @@ class EditorView extends View line.push("
") if text == '' - html = EditorView.buildEmptyLineHtml(showIndentGuide, eolInvisibles, htmlEolInvisibles, indentation, editor, mini) + html = @buildEmptyLineHtml(showIndentGuide, eolInvisibles, htmlEolInvisibles, indentation, editor, mini) line.push(html) if html else firstNonWhitespacePosition = text.search(/\S/)