💄 Fix misleading variable name

This commit is contained in:
Nathan Sobo
2014-01-17 14:32:53 -07:00
parent 8e75831318
commit 12ca214d6a

View File

@@ -202,7 +202,7 @@ class Gutter extends View
html = ''
for row in rows
if row == lastScreenRow
if row is lastRow
rowValue = ''
else
rowValue = (row + 1).toString()
@@ -214,7 +214,7 @@ class Gutter extends View
html += """<div class="#{classes}">#{rowValuePadding}#{rowValue}</div>"""
lastScreenRow = row
lastRow = row
html