Skip to content
This repository has been archived by the owner on Apr 11, 2018. It is now read-only.

Cleanup of unused variable in tag function output. #37

Merged
merged 1 commit into from Jan 20, 2012
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion lib/tags.js
Expand Up @@ -218,7 +218,7 @@ exports['for'] = function (indent) {
parser.compile.call(this, indent + ' ');

out = '(function () {\n' +
' var ' + operand1 + ', forloop = {}, __forloopKey, __forloopIndex = 0, __forloopLength = 0,' +
' var forloop = {}, __forloopKey, __forloopIndex = 0, __forloopLength = 0,' +
'__origOperand1Value = __context["' + operand1 + '"];\n' +
helpers.setVar('__forloopIter', operand2) +
' else {\n' +
Expand Down